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
11 lines
288 B
Java
11 lines
288 B
Java
package com.semmle.js.ast;
|
|
|
|
/** The common interface implemented by all AST node types. */
|
|
public interface INode extends ISourceElement {
|
|
/** Accept a visitor object. */
|
|
public <C, R> R accept(Visitor<C, R> v, C c);
|
|
|
|
/** Return the node's type tag. */
|
|
public String getType();
|
|
}
|