File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
javascript/ql/lib/semmle/javascript/frameworks Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,11 @@ module Vue {
14
14
override DataFlow:: Node getARhs ( ) { none ( ) }
15
15
}
16
16
17
- /** A value exported from a `.vue` file. */
17
+ /**
18
+ * A value exported from a `.vue` file.
19
+ *
20
+ * This `EntryPoint` is used by `SingleFileComponent::getOwnOptions()`.
21
+ */
18
22
private class VueExportEntryPoint extends API:: EntryPoint {
19
23
VueExportEntryPoint ( ) { this = "VueExportEntryPoint" }
20
24
@@ -474,6 +478,8 @@ module Vue {
474
478
*
475
479
* Concretely, such an import receives the Vue component generated from the .vue file,
476
480
* not the actual exports of the script tag in the file.
481
+ *
482
+ * This entry point is used in `SingleFileComponent::getComponentRef()`.
477
483
*/
478
484
private class VueFileImportEntryPoint extends API:: EntryPoint {
479
485
VueFileImportEntryPoint ( ) { this = "VueFileImportEntryPoint" }
You can’t perform that action at this time.
0 commit comments