File tree Expand file tree Collapse file tree 2 files changed +412
-414
lines changed
lib/codeql/swift/printast Expand file tree Collapse file tree 2 files changed +412
-414
lines changed Original file line number Diff line number Diff line change @@ -122,9 +122,7 @@ class PrintUnresolved extends PrintLocatable {
122122class PrintVarDecl extends PrintLocatable {
123123 override VarDecl ast ;
124124
125- override string getProperty ( string key ) {
126- key = "getType()" and result = ast .getType ( ) .toString ( )
127- }
125+ override string getProperty ( string key ) { key = "Type" and result = ast .getType ( ) .toString ( ) }
128126}
129127
130128/**
@@ -134,6 +132,6 @@ class PrintAbstractFunctionDecl extends PrintLocatable {
134132 override AbstractFunctionDecl ast ;
135133
136134 override string getProperty ( string key ) {
137- key = "getInterfaceType() " and result = ast .getInterfaceType ( ) .toString ( )
135+ key = "InterfaceType " and result = ast .getInterfaceType ( ) .toString ( )
138136 }
139137}
You can’t perform that action at this time.
0 commit comments