You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.2 KiB
42 lines
1.2 KiB
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
|
|
<title>t040bug80</title>
|
|
|
|
<!-- ANTLR includes -->
|
|
<script type="text/javascript" src="../../lib/antlr3-all.js"></script>
|
|
<script type="text/javascript" src="t040bug80.js"></script>
|
|
|
|
<!-- JsUnit include -->
|
|
<script type="text/javascript" src="../jsunit/app/jsUnitCore.js"></script>
|
|
|
|
<!-- Test Code -->
|
|
<script type="text/javascript">
|
|
var TLexer = function() {
|
|
TLexer.superclass.constructor.apply(this, arguments);
|
|
};
|
|
org.antlr.lang.extend(TLexer, t040bug80, {
|
|
recover: function(input, re) { throw re; }
|
|
});
|
|
|
|
function testValid1() {
|
|
var stream = new org.antlr.runtime.ANTLRStringStream("defined"),
|
|
lexer = new TLexer(stream),
|
|
token;
|
|
|
|
while (true) {
|
|
token = lexer.nextToken();
|
|
if (token.getType()===org.antlr.runtime.Token.EOF) {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
<h1>t040bug80</h1>
|
|
</body>
|
|
</html>
|