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>t032subrulePredict</title> 6 7<!-- ANTLR includes --> 8<script type="text/javascript" src="../../lib/antlr3-all.js"></script> 9<script type="text/javascript" src="t032subrulePredictLexer.js"></script> 10<script type="text/javascript" src="t032subrulePredictParser.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 TParser = function() { 19 this.cond = true; 20 TParser.superclass.constructor.apply(this, arguments); 21 } 22 org.antlr.lang.extend(TParser, t032subrulePredictParser, { 23 emitErrorMessage: function() { /* don't report errors */ }, 24 recover: function(re) { 25 /* don't recover, just crash */ 26 throw re; 27 } 28 }); 29 30 31 function testValid1() { 32 var cstream = new org.antlr.runtime.ANTLRStringStream("BEGIN A END"), 33 lexer = new t032subrulePredictLexer(cstream), 34 tstream = new org.antlr.runtime.CommonTokenStream(lexer), 35 parser = new TParser(tstream); 36 37 parser.a(); 38 } 39 40 /* @todo DFA doesn't catch EOF transition correctly. Looks like an analysis 41 * bug in the ANTLR Tool. 42 function [remove]testValid2() { 43 var cstream = new org.antlr.runtime.ANTLRStringStream(" A"), 44 lexer = new t032subrulePredictLexer(cstream), 45 tstream = new org.antlr.runtime.CommonTokenStream(lexer), 46 parser = new TParser(tstream); 47 48 parser.b(); 49 } 50 */ 51</script> 52 53</head> 54<body> 55 <h1>t032subrulePredict</h1> 56</body> 57</html> 58