index.js
972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
'use strict';
var assert = require('assert');
var TokenStream = require('../');
assert.throws(function () {
new TokenStream('foo,bar');
});
var stream = new TokenStream([
'a',
'b',
'c',
'd'
]);
assert.throws(function () {
stream.lookahead(9);
});
assert(stream.peek() === 'a');
assert(stream.lookahead(0) == 'a');
assert(stream.lookahead(1) == 'b');
assert(stream.advance() === 'a');
assert(stream.peek() === 'b');
assert(stream.lookahead(0) == 'b');
assert(stream.lookahead(1) == 'c');
stream.defer('z');
assert(stream.peek() === 'z');
assert(stream.lookahead(0) == 'z');
assert(stream.lookahead(1) == 'b');
assert(stream.advance() === 'z');
assert(stream.advance() === 'b');
assert(stream.advance() === 'c');
assert(stream.advance() === 'd');
assert.throws(function () {
stream.peek();
});
assert.throws(function () {
stream.lookahead(0);
});
assert.throws(function () {
stream.lookahead(1);
});
assert.throws(function () {
stream.advance();
});