bitmark-grammar
Version:
21 lines (16 loc) • 607 B
text/typescript
/*!
* Copyright 2016 The ANTLR Project. All rights reserved.
* Licensed under the BSD-3-Clause license. See LICENSE file in the project root for license information.
*/
// ConvertTo-TS run at 2016-10-04T11:26:37.5657409-07:00
import { ATNState } from "./ATNState";
import { ATNStateType } from "./ATNStateType";
import { BlockStartState } from "./BlockStartState";
import { Override } from "../Decorators";
/** The block that begins a closure loop. */
export class StarBlockStartState extends BlockStartState {
get stateType(): ATNStateType {
return ATNStateType.STAR_BLOCK_START;
}
}