Skip to content

Commit 18596cb

Browse files
committed
Java: Add moduleImportDeclarations to dbschme
1 parent cff52bf commit 18596cb

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

java/ql/lib/config/semmlecode.dbscheme

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -591,6 +591,12 @@ imports(
591591
int kind: int ref
592592
);
593593

594+
moduleImportDeclarations(
595+
unique int id: @moduleimportdeclaration,
596+
int holder: @classorinterfaceorpackage ref,
597+
string moduleName: string ref
598+
);
599+
594600
#keyset[parent,idx]
595601
stmts(
596602
unique int id: @stmt,
@@ -1025,7 +1031,7 @@ javadocText(
10251031
@locatableElement;
10261032

10271033
@locatableElement = @file | @primitive | @classorinterface | @method | @constructor | @param | @exception | @field |
1028-
@boundedtype | @array | @localvar | @expr | @stmt | @import | @fielddecl | @kt_type | @kt_type_alias |
1034+
@boundedtype | @array | @localvar | @expr | @stmt | @import | @moduleimportdeclaration | @fielddecl | @kt_type | @kt_type_alias |
10291035
@kt_property;
10301036

10311037
@modifiable = @member_modifiable| @param | @localvar | @typevariable;

0 commit comments

Comments
 (0)