1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 3 <head> 4 <meta http-equiv="content-type" content="text/html;charset=utf-8" /> 5 <title>t016actions</title> 6 7 <!-- ANTLR includes --> 8 <script type="text/javascript" src="../../lib/antlr3-all.js"></script> 9 <script type="text/javascript" src="t016actionsLexer.js"></script> 10 <script type="text/javascript" src="t016actionsParser.js"></script> 11 12 13 <!-- JsUnit include --> 14 <script type="text/javascript" src="../jsunit/app/jsUnitCore.js"></script> 15 16 <!-- Test Code --> 17 <script type="text/javascript"> 18 function testValid() { 19 var cstream = new org.antlr.runtime.ANTLRStringStream("int foo;"), 20 lexer = new t016actionsLexer(cstream), 21 tstream = new org.antlr.runtime.CommonTokenStream(lexer), 22 parser = new t016actionsParser(tstream); 23 24 var result = parser.declaration(); 25 assertEquals("foo", result); 26 } 27 </script> 28 29 </head> 30 <body> 31 <h1>t016actions</h1> 32 </body> 33 </html> 34