mirror of
https://github.com/github/codeql.git
synced 2026-07-16 16:58:14 +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
13 lines
246 B
Java
13 lines
246 B
Java
package com.semmle.js.ast;
|
|
|
|
public class XMLAnyName extends Expression {
|
|
public XMLAnyName(SourceLocation loc) {
|
|
super("XMLAnyName", loc);
|
|
}
|
|
|
|
@Override
|
|
public <C, R> R accept(Visitor<C, R> v, C c) {
|
|
return v.visit(this, c);
|
|
}
|
|
}
|