diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-04-17 22:02:00 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-04-18 10:50:50 -0700 |
| commit | 2c0cb901c8ee464b9d5d4e069b98c692678b2ee7 (patch) | |
| tree | ea37dfde59d606b591e979eae6c41c5e0d1ad3c1 /src/librustsyntax/rustsyntax.rc | |
| parent | d51973a6a66756c2f2cb7ab0649483ef41ba3050 (diff) | |
| download | rust-2c0cb901c8ee464b9d5d4e069b98c692678b2ee7.tar.gz rust-2c0cb901c8ee464b9d5d4e069b98c692678b2ee7.zip | |
syntax: Begin moving functions from mod parser to mod classify
Diffstat (limited to 'src/librustsyntax/rustsyntax.rc')
| -rw-r--r-- | src/librustsyntax/rustsyntax.rc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/librustsyntax/rustsyntax.rc b/src/librustsyntax/rustsyntax.rc index d481670b8b3..68a41985aa6 100644 --- a/src/librustsyntax/rustsyntax.rc +++ b/src/librustsyntax/rustsyntax.rc @@ -27,6 +27,7 @@ mod parse { export lexer; export comments; export prec; + export classify; mod eval; mod lexer; @@ -36,6 +37,9 @@ mod parse { #[doc = "Functions dealing with operator precedence"] mod prec; + + #[doc = "Routines the parser uses to classify AST nodes"] + mod classify; } mod print { |
