mirror of
https://github.com/github/codeql.git
synced 2026-03-23 07:56:54 +01:00
16 lines
406 B
Java
16 lines
406 B
Java
package com.semmle.js.ast;
|
|
|
|
/**
|
|
* A continue statement either with a label (<code>continue outer;</code>) or without (<code>continue;</code>).
|
|
*/
|
|
public class ContinueStatement extends JumpStatement {
|
|
public ContinueStatement(SourceLocation loc, Identifier label) {
|
|
super("ContinueStatement", loc, label);
|
|
}
|
|
|
|
@Override
|
|
public <Q, A> A accept(Visitor<Q, A> v, Q q) {
|
|
return v.visit(this, q);
|
|
}
|
|
}
|