1 | /*!
|
2 | * Copyright 2016 The ANTLR Project. All rights reserved.
|
3 | * Licensed under the BSD-3-Clause license. See LICENSE file in the project root for license information.
|
4 | */
|
5 | import { Parser } from "./Parser";
|
6 | import { ParserRuleContext } from "./ParserRuleContext";
|
7 | /**
|
8 | *
|
9 | * @author Sam Harwell
|
10 | */
|
11 | export declare function RuleVersion(version: number): <T extends ParserRuleContext>(target: Parser, propertyKey: PropertyKey, propertyDescriptor: TypedPropertyDescriptor<(...args: any[]) => T>) => void;
|