[Bprocessor-commit] bscript/src/etc bscript.g,1.3,1.4
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2006-09-12 09:27:33
|
Update of /cvsroot/bprocessor/bscript/src/etc In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv4945/src/etc Modified Files: bscript.g Log Message: new scripting capabilities Index: bscript.g =================================================================== RCS file: /cvsroot/bprocessor/bscript/src/etc/bscript.g,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** bscript.g 11 Sep 2006 22:57:25 -0000 1.3 --- bscript.g 12 Sep 2006 09:27:31 -0000 1.4 *************** *** 101,106 **** call[Function env] ! : name1:Identifier StartTerm EndTerm ! | name2:Identifier StartTerm expression[env] ( Comma expression[env] ) * EndTerm ; \ No newline at end of file --- 101,110 ---- call[Function env] ! : name1:Identifier { env.append(new Mark()); } ! StartTerm EndTerm ! { env.append(new Call(name1.getText())); } ! | name2:Identifier { env.append(new Mark()); } ! StartTerm expression[env] ( Comma expression[env] ) * EndTerm ! { env.append(new Call(name2.getText())); } ; \ No newline at end of file |