blob: b1fd4ced4e888b0aa67dd7cde76c6f41f582c3d6 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001//
2// Constants
3//
4
5'use strict';
6
7module.exports.EOL = '\n';
8
9module.exports.SUPPRESS = '==SUPPRESS==';
10
11module.exports.OPTIONAL = '?';
12
13module.exports.ZERO_OR_MORE = '*';
14
15module.exports.ONE_OR_MORE = '+';
16
17module.exports.PARSER = 'A...';
18
19module.exports.REMAINDER = '...';
20
21module.exports._UNRECOGNIZED_ARGS_ATTR = '_unrecognized_args';