File tree 5 files changed +9
-0
lines changed
5 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -955,6 +955,11 @@ fn tokenize_statement(st: &syntax::Statement) -> TokenStream {
955
955
956
956
fn tokenize_simple_statement ( sst : & syntax:: SimpleStatement ) -> TokenStream {
957
957
match * sst {
958
+ syntax:: SimpleStatement :: Preprocessor ( ref pp) => {
959
+ let pp = tokenize_preprocessor ( pp) ;
960
+ quote ! { glsl:: syntax:: SimpleStatement :: Preprocessor ( #pp) }
961
+ }
962
+
958
963
syntax:: SimpleStatement :: Declaration ( ref d) => {
959
964
let d = tokenize_declaration ( d) ;
960
965
quote ! { glsl:: syntax:: SimpleStatement :: Declaration ( #d) }
Original file line number Diff line number Diff line change @@ -1305,6 +1305,7 @@ pub fn multiplicative_expr(i: &str) -> ParserResult<syntax::Expr> {
1305
1305
/// Parse a simple statement.
1306
1306
pub fn simple_statement ( i : & str ) -> ParserResult < syntax:: SimpleStatement > {
1307
1307
alt ( (
1308
+ map ( preprocessor, syntax:: SimpleStatement :: Preprocessor ) ,
1308
1309
map ( jump_statement, syntax:: SimpleStatement :: Jump ) ,
1309
1310
map ( iteration_statement, syntax:: SimpleStatement :: Iteration ) ,
1310
1311
map ( case_label, syntax:: SimpleStatement :: CaseLabel ) ,
Original file line number Diff line number Diff line change @@ -1011,6 +1011,7 @@ impl Statement {
1011
1011
/// Simple statement.
1012
1012
#[ derive( Clone , Debug , PartialEq ) ]
1013
1013
pub enum SimpleStatement {
1014
+ Preprocessor ( Preprocessor ) ,
1014
1015
Declaration ( Declaration ) ,
1015
1016
Expression ( ExprStatement ) ,
1016
1017
Selection ( SelectionStatement ) ,
Original file line number Diff line number Diff line change @@ -1343,6 +1343,7 @@ where
1343
1343
F : Write ,
1344
1344
{
1345
1345
match * sst {
1346
+ syntax:: SimpleStatement :: Preprocessor ( ref pp) => show_preprocessor ( f, pp) ,
1346
1347
syntax:: SimpleStatement :: Declaration ( ref d) => show_declaration ( f, d) ,
1347
1348
syntax:: SimpleStatement :: Expression ( ref e) => show_expression_statement ( f, e) ,
1348
1349
syntax:: SimpleStatement :: Selection ( ref s) => show_selection_statement ( f, s) ,
Original file line number Diff line number Diff line change @@ -1199,6 +1199,7 @@ macro_rules! make_host_trait {
1199
1199
1200
1200
if visit == Visit :: Children {
1201
1201
match self {
1202
+ syntax:: SimpleStatement :: Preprocessor ( p) => p. $mthd_name( visitor) ,
1202
1203
syntax:: SimpleStatement :: Declaration ( d) => d. $mthd_name( visitor) ,
1203
1204
syntax:: SimpleStatement :: Expression ( e) => e. $mthd_name( visitor) ,
1204
1205
syntax:: SimpleStatement :: Selection ( s) => s. $mthd_name( visitor) ,
You can’t perform that action at this time.
0 commit comments