aboutsummaryrefslogtreecommitdiff
path: root/runtime/JavaScript/tests/functional/t002lexer.html
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/JavaScript/tests/functional/t002lexer.html')
-rwxr-xr-xruntime/JavaScript/tests/functional/t002lexer.html58
1 files changed, 58 insertions, 0 deletions
diff --git a/runtime/JavaScript/tests/functional/t002lexer.html b/runtime/JavaScript/tests/functional/t002lexer.html
new file mode 100755
index 0000000..d95c98d
--- /dev/null
+++ b/runtime/JavaScript/tests/functional/t002lexer.html
@@ -0,0 +1,58 @@
+<!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>t002lexer</title>
+
+<!-- ANTLR includes -->
+<script type="text/javascript" src="../../lib/antlr3-all.js"></script>
+<script type="text/javascript" src="t002lexer.js"></script>
+
+<!-- JsUnit include -->
+<script type="text/javascript" src="../jsunit/app/jsUnitCore.js"></script>
+
+<!-- Test Code -->
+<script type="text/javascript">
+ function TLexer() {
+ TLexer.superclass.constructor.apply(this, arguments);
+ }
+ org.antlr.lang.extend(TLexer, t002lexer, {
+ reportError: function(e) {
+ throw e;
+ }
+ });
+
+ function testValid() {
+ var stream = new org.antlr.runtime.ANTLRStringStream("01"),
+ lexer = new TLexer(stream),
+ token;
+
+ token = lexer.nextToken();
+ assertEquals(token.getType(), lexer.ZERO);
+
+ token = lexer.nextToken();
+ assertEquals(token.getType(), lexer.ONE);
+
+ token = lexer.nextToken();
+ assertEquals(token.getType(), lexer.EOF);
+ }
+
+ function testMalformedInput() {
+ var stream = new org.antlr.runtime.ANTLRStringStream('2'),
+ lexer = new TLexer(stream),
+ token;
+
+ try {
+ token = lexer.nextToken();
+ fail("nextToken should have thrown error on invalid input");
+ } catch (e) {
+ assertEquals(e.getUnexpectedType(), '2');
+ }
+ }
+</script>
+
+</head>
+<body>
+ <h1>t002lexer</h1>
+</body>
+</html>