t023scopes.html revision 324c4644fee44b9898524c09511bd33c3f12e2df
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>t023scopes</title>
6
7<!-- ANTLR includes -->
8<script type="text/javascript" src="/lib/antlr3-all.js"></script>
9<script type="text/javascript" src="t023scopesLexer.js"></script>
10<script type="text/javascript" src="t023scopesParser.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        TParser.superclass.constructor.apply(this, arguments);
20    }
21    org.antlr.lang.extend(TParser, t023scopesParser);
22
23
24    function testa1() {
25        var cstream = new org.antlr.runtime.ANTLRStringStream("foobar"),
26            lexer = new t023scopesLexer(cstream),
27            tstream = new org.antlr.runtime.CommonTokenStream(lexer),
28            parser = new TParser(tstream);
29
30        // just make sure we don't get any errors
31        parser.prog();
32    }
33</script>
34
35</head>
36<body>
37    <h1>t023scopes</h1>
38</body>
39</html>
40