mirror of
https://github.com/github/codeql.git
synced 2026-07-20 18:58:36 +02: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
9 lines
201 B
Java
9 lines
201 B
Java
package com.semmle.js.ast;
|
|
|
|
/** Common superclass of all statements. */
|
|
public abstract class Statement extends Node {
|
|
public Statement(String type, SourceLocation loc) {
|
|
super(type, loc);
|
|
}
|
|
}
|