mirror of
https://github.com/github/codeql.git
synced 2026-03-25 17:06:46 +01:00
No special settings; command: find javascript/extractor/src -name "*.java" | xargs java -jar /path/to/google-java-format-1.7-all-deps.jar --replace
24 lines
531 B
Java
24 lines
531 B
Java
package com.semmle.js.ast;
|
|
|
|
import java.util.List;
|
|
|
|
/** A block statement such as <code>{ console.log("Hi"); }</code>. */
|
|
public class BlockStatement extends Statement {
|
|
private final List<Statement> 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);
|
|
}
|
|
|
|
/** The statements in the block. */
|
|
public List<Statement> getBody() {
|
|
return body;
|
|
}
|
|
}
|