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 {
122
122
class PrintVarDecl extends PrintLocatable {
123
123
override VarDecl ast ;
124
124
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 ( ) }
128
126
}
129
127
130
128
/**
@@ -134,6 +132,6 @@ class PrintAbstractFunctionDecl extends PrintLocatable {
134
132
override AbstractFunctionDecl ast ;
135
133
136
134
override string getProperty ( string key ) {
137
- key = "getInterfaceType() " and result = ast .getInterfaceType ( ) .toString ( )
135
+ key = "InterfaceType " and result = ast .getInterfaceType ( ) .toString ( )
138
136
}
139
137
}
You can’t perform that action at this time.
0 commit comments