File tree Expand file tree Collapse file tree 1 file changed +14
-7
lines changed Expand file tree Collapse file tree 1 file changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -413,6 +413,13 @@ element: extension
413
413
$$ = $1 ;
414
414
}
415
415
| word EQ implicit_expr_stat SEMICOLON
416
+ {
417
+ stringstream ss;
418
+ ss << " channel." <<$1 << " = " <<$3 <<endl;
419
+ $$ = alloc_string((char *)ss.str().data());
420
+ destroy_string ($1 );
421
+ destroy_string ($2 );
422
+ }
416
423
| LOCAL word EQ implicit_expr_stat SEMICOLON
417
424
| SEMICOLON
418
425
{
@@ -777,13 +784,13 @@ macro_call: word LPAREN eval_arglist RPAREN
777
784
;
778
785
779
786
application_call_head : word LPAREN
780
- {
781
- stringstream ss;
782
- $1 [0 ] = tolower($1 [0 ]);
783
- ss << " app." << $1 << " (" ;
784
- $$ = alloc_string((char *)ss.str().data());
785
- destroy_string ($1 );
786
- };
787
+ {
788
+ stringstream ss;
789
+ $1 [0 ] = tolower($1 [0 ]);
790
+ ss << " app." << $1 << " (" ;
791
+ $$ = alloc_string((char *)ss.str().data());
792
+ destroy_string ($1 );
793
+ };
787
794
788
795
application_call : application_call_head eval_arglist RPAREN
789
796
{
You can’t perform that action at this time.
0 commit comments