mirror of
https://github.com/github/codeql.git
synced 2026-03-27 09:48:16 +01: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:
@@ -2,26 +2,22 @@ package com.semmle.js.ast;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* A block statement such as <code>{ console.log("Hi"); }</code>.
|
||||
*/
|
||||
/** A block statement such as <code>{ console.log("Hi"); }</code>. */
|
||||
public class BlockStatement extends Statement {
|
||||
private final List<Statement> body;
|
||||
private final List<Statement> body;
|
||||
|
||||
public BlockStatement(SourceLocation loc, List<Statement> body) {
|
||||
super("BlockStatement", loc);
|
||||
this.body = body;
|
||||
}
|
||||
public BlockStatement(SourceLocation loc, List<Statement> body) {
|
||||
super("BlockStatement", loc);
|
||||
this.body = body;
|
||||
}
|
||||
|
||||
@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);
|
||||
}
|
||||
|
||||
/**
|
||||
* The statements in the block.
|
||||
*/
|
||||
public List<Statement> getBody() {
|
||||
return body;
|
||||
}
|
||||
/** The statements in the block. */
|
||||
public List<Statement> getBody() {
|
||||
return body;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user