-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #404 from ydah/organize-test-for-parameterizingrules
Organize Parameterizing rules testing
- Loading branch information
Showing
21 changed files
with
1,586 additions
and
1,340 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
spec/fixtures/parameterizing_rules/user_defined/multi_arguments.y
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* This is comment for this file. | ||
*/ | ||
|
||
%{ | ||
// Prologue | ||
static int yylex(YYSTYPE *val, YYLTYPE *loc); | ||
static int yyerror(YYLTYPE *loc, const char *str); | ||
%} | ||
|
||
%union { | ||
int i; | ||
char *s; | ||
} | ||
|
||
%token <i> number | ||
%token <s> string | ||
|
||
%rule pair(X, Y): X | ||
| Y | ||
; | ||
|
||
%% | ||
|
||
program : pair(number, string) | ||
| pair(number, number) | ||
; | ||
|
||
%% | ||
|
||
static int yylex(YYSTYPE *yylval, YYLTYPE *loc) | ||
{ | ||
return 0; | ||
} | ||
|
||
static int yyerror(YYLTYPE *loc, const char *str) | ||
{ | ||
return 0; | ||
} | ||
|
||
int main(int argc, char *argv[]) | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
47 changes: 47 additions & 0 deletions
47
spec/fixtures/parameterizing_rules/user_defined/nested_rules_multi_arguments.y
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* This is comment for this file. | ||
*/ | ||
|
||
%{ | ||
// Prologue | ||
static int yylex(YYSTYPE *val, YYLTYPE *loc); | ||
static int yyerror(YYLTYPE *loc, const char *str); | ||
%} | ||
|
||
%union { | ||
int i; | ||
char* s; | ||
} | ||
|
||
%token <i> number | ||
%token <s> string | ||
|
||
%rule nested_multi_option(X): /* empty */ | ||
| X | ||
; | ||
|
||
%rule multi_option(X, Y): /* empty */ | ||
| nested_multi_option(X) | ||
| nested_multi_option(Y) X | ||
; | ||
|
||
%% | ||
|
||
program : multi_option(number, string) | ||
; | ||
|
||
%% | ||
|
||
static int yylex(YYSTYPE *yylval, YYLTYPE *loc) | ||
{ | ||
return 0; | ||
} | ||
|
||
static int yyerror(YYLTYPE *loc, const char *str) | ||
{ | ||
return 0; | ||
} | ||
|
||
int main(int argc, char *argv[]) | ||
{ | ||
} |
40 changes: 40 additions & 0 deletions
40
spec/fixtures/parameterizing_rules/user_defined/nested_rules_symbols.y
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* This is comment for this file. | ||
*/ | ||
|
||
%{ | ||
// Prologue | ||
static int yylex(YYSTYPE *val, YYLTYPE *loc); | ||
static int yyerror(YYLTYPE *loc, const char *str); | ||
%} | ||
|
||
%union { | ||
char* s; | ||
} | ||
|
||
%token <s> string | ||
|
||
%rule with_word_seps(X): /* empty */ | ||
| X ' '+ | ||
; | ||
|
||
%% | ||
|
||
program : with_word_seps(string) | ||
; | ||
|
||
%% | ||
|
||
static int yylex(YYSTYPE *yylval, YYLTYPE *loc) | ||
{ | ||
return 0; | ||
} | ||
|
||
static int yyerror(YYLTYPE *loc, const char *str) | ||
{ | ||
return 0; | ||
} | ||
|
||
int main(int argc, char *argv[]) | ||
{ | ||
} |
File renamed without changes.
41 changes: 41 additions & 0 deletions
41
spec/fixtures/parameterizing_rules/user_defined/with_action.y
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* This is comment for this file. | ||
*/ | ||
|
||
%{ | ||
// Prologue | ||
static int yylex(YYSTYPE *val, YYLTYPE *loc); | ||
static int yyerror(YYLTYPE *loc, const char *str); | ||
%} | ||
|
||
%union { | ||
int i; | ||
char *s; | ||
} | ||
|
||
%token <i> number | ||
%token <s> string | ||
|
||
%rule pair(X, Y): X ',' Y { printf("(%d, %d)\n", $1, $2); } | ||
; | ||
|
||
%% | ||
|
||
program : pair(number, string) { printf("pair odd even\n"); } | ||
; | ||
|
||
%% | ||
|
||
static int yylex(YYSTYPE *yylval, YYLTYPE *loc) | ||
{ | ||
return 0; | ||
} | ||
|
||
static int yyerror(YYLTYPE *loc, const char *str) | ||
{ | ||
return 0; | ||
} | ||
|
||
int main(int argc, char *argv[]) | ||
{ | ||
} |
Oops, something went wrong.