bitmark-grammar
Version:
18 lines (17 loc) • 593 B
JavaScript
/*!
* 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.
*/
/**
* Declares a dependency upon a grammar rule, along with a set of zero or more dependent rules.
*
* Version numbers within a grammar should be assigned on a monotonically increasing basis to allow for accurate
* tracking of dependent rules.
*
* @author Sam Harwell
*/
export function RuleDependency(dependency) {
return (target, propertyKey, propertyDescriptor) => {
// intentionally empty
};
}