diff options
| author | Eric Holk <eric.holk@gmail.com> | 2012-07-05 16:31:19 -0700 |
|---|---|---|
| committer | Eric Holk <eric.holk@gmail.com> | 2012-07-06 10:42:40 -0700 |
| commit | d09bcc0131935e2ad403aa965e9be06ddcf01c08 (patch) | |
| tree | 9dca498eeb8a64365d06d6cea20de530f4826fbe /src/libsyntax/parse | |
| parent | f0ef4ef81b26388261ae56fdb019982ed3141668 (diff) | |
| download | rust-d09bcc0131935e2ad403aa965e9be06ddcf01c08.tar.gz rust-d09bcc0131935e2ad403aa965e9be06ddcf01c08.zip | |
Adding token tree nonterminals to earley parser.
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/token.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsyntax/parse/token.rs b/src/libsyntax/parse/token.rs index 1fc8b10f385..ef1d0f4bc47 100644 --- a/src/libsyntax/parse/token.rs +++ b/src/libsyntax/parse/token.rs @@ -96,6 +96,7 @@ enum whole_nt { w_ty( @ast::ty), w_ident(str_num, bool), w_path(@ast::path), + w_tt(ast::token_tree), } fn binop_to_str(o: binop) -> str { |
