File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
javascript/ql/lib/semmle/javascript Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -873,7 +873,7 @@ module API {
873
873
Stages:: APIStage:: ref ( ) and
874
874
exists ( string m |
875
875
pred = MkRoot ( ) and
876
- lbl = Label:: mod ( m )
876
+ lbl = Label:: moduleLabel ( m )
877
877
|
878
878
succ = MkModuleDef ( m )
879
879
or
@@ -1012,7 +1012,7 @@ module API {
1012
1012
}
1013
1013
1014
1014
/** Gets the edge label for the module `m`. */
1015
- LabelMod mod ( string m ) { result .getMod ( ) = m }
1015
+ LabelModule moduleLabel ( string m ) { result .getMod ( ) = m }
1016
1016
1017
1017
/** Gets the `member` edge label for member `m`. */
1018
1018
bindingset [ m]
@@ -1086,7 +1086,7 @@ module API {
1086
1086
1087
1087
private module LabelImpl {
1088
1088
newtype TLabel =
1089
- MkLabelMod ( string mod ) {
1089
+ MkLabelModule ( string mod ) {
1090
1090
exists ( Impl:: MkModuleExport ( mod ) ) or
1091
1091
exists ( Impl:: MkModuleImport ( mod ) )
1092
1092
} or
@@ -1148,10 +1148,10 @@ module API {
1148
1148
}
1149
1149
1150
1150
/** A label for a module. */
1151
- class LabelMod extends ApiLabel {
1151
+ class LabelModule extends ApiLabel {
1152
1152
string mod ;
1153
1153
1154
- LabelMod ( ) { this = MkLabelMod ( mod ) }
1154
+ LabelModule ( ) { this = MkLabelModule ( mod ) }
1155
1155
1156
1156
/** Gets the module associated with this label. */
1157
1157
string getMod ( ) { result = mod }
You can’t perform that action at this time.
0 commit comments