diff options
| author | Steven Fackler <sfackler@gmail.com> | 2014-03-02 15:26:39 -0800 |
|---|---|---|
| committer | Steven Fackler <sfackler@gmail.com> | 2014-03-02 15:26:39 -0800 |
| commit | 4c2353adee4094ebcd99653ef168d607fe843144 (patch) | |
| tree | 69977673d908019d6025c9ea7a1af535864064c6 /src/libsyntax/parse | |
| parent | 51233c52199241f95679f961eda77da03943681b (diff) | |
| download | rust-4c2353adee4094ebcd99653ef168d607fe843144.tar.gz rust-4c2353adee4094ebcd99653ef168d607fe843144.zip | |
Make visible types public in rustc
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index 9b209aadf19..2557af5e436 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -87,7 +87,7 @@ use std::vec_ng; #[allow(non_camel_case_types)] #[deriving(Eq)] -enum restriction { +pub enum restriction { UNRESTRICTED, RESTRICT_STMT_EXPR, RESTRICT_NO_BAR_OP, |
