1
0
mirror of https://github.com/lua/lua.git synced 2025-01-28 06:03:00 +08:00

new syntax: f´s´ for f(´s´).

This commit is contained in:
Roberto Ierusalimschy 1997-12-28 20:48:15 -02:00
parent da96eb2cce
commit ce53872684

View File

@ -1,6 +1,6 @@
%{
/*
** $Id: lua.stx,v 1.26 1997/12/23 19:24:19 roberto Exp roberto $
** $Id: lua.stx,v 1.27 1997/12/26 18:38:16 roberto Exp roberto $
** Syntax analizer and code generator
** See Copyright Notice in lua.h
*/
@ -828,6 +828,7 @@ funcvalue : varexp { $$ = 0; }
funcParams : '(' exprlist ')' { $$ = adjust_functioncall($2, 1); }
| table { $$ = 1; }
| STRING { code_string($1); $$ = 1; }
;
exprlist : /* empty */ { $$ = 0; }