Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| -- Types that don't depend on Id. (To break dependency) | |
| module types { | |
| -- Also invalid because of duplicate 'Path' -- to fix | |
| bool_arg_type = Undefined | Path | Int | Str | Other | |
| redir_arg_type = Path | Desc | Here | |
| -- Fifteen lexer modes for osh. | |
| -- Possible additional modes: | |
| -- nested backticks: echo `echo \`echo foo\` bar` | |
| lex_mode = | |
| NONE | |
| | COMMENT | |
| | OUTER | |
| | DBRACKET | |
| | SQ | DQ | DOLLAR_SQ | |
| | ARITH | |
| | EXTGLOB | |
| | VS_1 | VS_2 | VS_ARG_UNQ | VS_ARG_DQ | |
| | BASH_REGEX | BASH_REGEX_CHARS | |
| } |