Transition to monorepo on a new Dev branch

This commit is contained in:
2023-02-22 10:29:46 +01:00
parent 8436f03ec7
commit 3a483dc0ef
3712 changed files with 751 additions and 11 deletions

46
App/Source/node_modules/token-stream/test/index.js generated vendored Normal file
View File

@ -0,0 +1,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();
});