mirror of
https://github.com/github/codeql.git
synced 2026-04-27 01:35:13 +02:00
JavaScript: Open-source extractor.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package com.semmle.js.ast;
|
||||
|
||||
/**
|
||||
* A debugger statement <code>debugger;</code>.
|
||||
*/
|
||||
public class DebuggerStatement extends Statement {
|
||||
public DebuggerStatement(SourceLocation loc) {
|
||||
super("DebuggerStatement", loc);
|
||||
}
|
||||
|
||||
@Override
|
||||
public <Q, A> A accept(Visitor<Q, A> v, Q q) {
|
||||
return v.visit(this, q);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user