mirror of
https://github.com/github/codeql.git
synced 2026-04-28 02:05:14 +02:00
JavaScript: Autoformat extractor sources using google-java-format.
No special settings; command: find javascript/extractor/src -name "*.java" | xargs java -jar /path/to/google-java-format-1.7-all-deps.jar --replace
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
package com.semmle.js.ast;
|
||||
|
||||
/**
|
||||
* A <code>super</code> expression, appearing either as the callee of a super constructor
|
||||
* call or as the receiver of a super method call.
|
||||
* A <code>super</code> expression, appearing either as the callee of a super constructor call or as
|
||||
* the receiver of a super method call.
|
||||
*/
|
||||
public class Super extends Expression {
|
||||
public Super(SourceLocation loc) {
|
||||
super("Super", loc);
|
||||
}
|
||||
public Super(SourceLocation loc) {
|
||||
super("Super", loc);
|
||||
}
|
||||
|
||||
@Override
|
||||
public <Q, A> A accept(Visitor<Q, A> v, Q q) {
|
||||
return v.visit(this, q);
|
||||
}
|
||||
@Override
|
||||
public <Q, A> A accept(Visitor<Q, A> v, Q q) {
|
||||
return v.visit(this, q);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user