Home | History | Annotate | Download | only in functional
      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>t034tokenLabelPropertyRef</title>
      6 
      7 <!-- ANTLR includes -->
      8 <script type="text/javascript" src="../../lib/antlr3-all.js"></script>
      9 <script type="text/javascript" src="t034tokenLabelPropertyRefLexer.js"></script>
     10 <script type="text/javascript" src="t034tokenLabelPropertyRefParser.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     var TLexer = function() {
     19         TLexer.superclass.constructor.apply(this, arguments);
     20     };
     21     org.antlr.lang.extend(TLexer, t034tokenLabelPropertyRefLexer, {
     22         recover: function(re) {
     23             /* don't recover, just crash */
     24             throw re;
     25         }
     26     });
     27 
     28     var TParser = function() {
     29         TParser.superclass.constructor.apply(this, arguments);
     30     };
     31     org.antlr.lang.extend(TParser, t034tokenLabelPropertyRefParser, {
     32         recover: function(re) {
     33             /* don't recover, just crash */
     34             throw re;
     35         }
     36     });
     37 
     38 
     39     function testValid1() {
     40         var cstream = new org.antlr.runtime.ANTLRStringStream("   a"),
     41             lexer = new TLexer(cstream),
     42             tstream = new org.antlr.runtime.CommonTokenStream(lexer),
     43             parser = new TParser(tstream);
     44 
     45         var events = parser.a();
     46         assertArrayEquals(["a",4,1,3,0,1], xlog);
     47     }
     48 </script>
     49 
     50 </head>
     51 <body>
     52     <h1>t034tokenLabelPropertyRef</h1>
     53 </body>
     54 </html>
     55