File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
ruby/ql/lib/codeql/ruby/ast Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -202,17 +202,13 @@ class ConstantWriteAccess extends ConstantAccess {
202202 * constants up the namespace chain, the fully qualified name of a nested
203203 * constant can be ambiguous from just statically looking at the AST.
204204 */
205- string getAQualifiedName ( ) {
206- result = resolveConstantWriteAccess ( this )
207- }
205+ string getAQualifiedName ( ) { result = resolveConstantWriteAccess ( this ) }
208206
209207 /**
210208 * Gets a qualified name for this constant. Deprecated in favor of
211209 * `getAQualifiedName` because this can return more than one value
212210 */
213- deprecated string getQualifiedName ( ) {
214- result = this .getAQualifiedName ( )
215- }
211+ deprecated string getQualifiedName ( ) { result = this .getAQualifiedName ( ) }
216212}
217213
218214/**
You can’t perform that action at this time.
0 commit comments