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>t045dfabug</title> 6 7<!-- ANTLR includes --> 8<script type="text/javascript" src="../../lib/antlr3-all.js"></script> 9<script type="text/javascript" src="t045dfabugLexer.js"></script> 10<script type="text/javascript" src="t045dfabugParser.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, t045dfabugLexer, { 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, t045dfabugParser, { 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('public fooze'), 41 lexer = new TLexer(cstream), 42 tstream = new org.antlr.runtime.CommonTokenStream(lexer), 43 parser = new TParser(tstream); 44 parser.r(); 45 } 46</script> 47 48</head> 49<body> 50 <h1>t045dfabug</h1> 51</body> 52</html> 53