@woosh/meep-engine 2.49.6 → 2.49.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/package.json +1 -1
  2. package/src/core/cache/LoadingCache.d.ts +2 -0
  3. package/src/core/cache/LoadingCache.js +45 -18
  4. package/src/core/math/computeGreatestCommonDivisor.spec.js +9 -0
  5. package/src/core/math/statistics/computeStatisticalMean.spec.js +9 -0
  6. package/src/core/math/statistics/halton_sequence.spec.js +6 -1
  7. package/src/core/model/node-graph/node/Port.spec.js +10 -1
  8. package/src/core/model/reactive/evaluation/MultiPredicateEvaluator.js +5 -8
  9. package/src/core/model/reactive/evaluation/MultiPredicateEvaluator.spec.js +41 -0
  10. package/src/core/model/reactive/trigger/BlackboardTrigger.js +5 -0
  11. package/src/core/model/reactive/trigger/BlackboardTrigger.spec.js +24 -0
  12. package/src/core/parser/simple/readBooleanToken.js +38 -0
  13. package/src/core/parser/simple/readHexToken.js +95 -0
  14. package/src/core/parser/simple/readHexToken.spec.js +21 -0
  15. package/src/core/parser/simple/readIdentifierToken.js +43 -0
  16. package/src/core/parser/simple/readIdentifierToken.spec.js +32 -0
  17. package/src/core/parser/simple/readLiteralToken.js +96 -0
  18. package/src/core/parser/simple/readNumberToken.js +73 -0
  19. package/src/core/parser/simple/readNumberToken.spec.js +17 -0
  20. package/src/core/parser/simple/readReferenceToken.js +48 -0
  21. package/src/core/parser/simple/readReferenceToken.spec.js +18 -0
  22. package/src/core/parser/simple/readStringToken.js +94 -0
  23. package/src/core/parser/simple/readStringToken.spec.js +57 -0
  24. package/src/core/parser/simple/{readUnsignedInteger.js → readUnsignedIntegerToken.js} +1 -1
  25. package/src/core/parser/simple/readUnsignedIntegerToken.spec.js +6 -0
  26. package/src/core/process/executor/ConcurrentExecutor.js +147 -234
  27. package/src/engine/intelligence/blackboard/Blackboard.d.ts +4 -0
  28. package/src/engine/intelligence/blackboard/Blackboard.js +11 -0
  29. package/src/view/tooltip/gml/parser/readReferenceValueToken.js +2 -2
  30. package/src/core/parser/simple/SimpleParser.js +0 -464
  31. package/src/core/parser/simple/SimpleParser.spec.js +0 -105
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "description": "Fully featured ECS game engine written in JavaScript",
6
6
  "type": "module",
7
7
  "author": "Alexander Goldring",
8
- "version": "2.49.6",
8
+ "version": "2.49.7",
9
9
  "main": "build/meep.module.js",
10
10
  "module": "build/meep.module.js",
11
11
  "exports": {
@@ -11,6 +11,8 @@ export declare class LoadingCache<K, V> {
11
11
  retryFailed?: boolean
12
12
  })
13
13
 
14
+ refresh(key: K): Promise<V>
15
+
14
16
  invalidate(key: K): void
15
17
 
16
18
  clear(): void
@@ -18,6 +18,10 @@ class Record {
18
18
  }
19
19
  }
20
20
 
21
+ function current_time_in_seconds() {
22
+ return performance.now() * 1e-3;
23
+ }
24
+
21
25
  const DEFAULT_TIME_TO_LIVE = 10;
22
26
 
23
27
  /**
@@ -98,13 +102,52 @@ export class LoadingCache {
98
102
  this.#internal.clear();
99
103
  }
100
104
 
105
+ /**
106
+ *
107
+ * @param {K} key
108
+ * @param {number} timestamp
109
+ * @return {Record<Promise<V>>}
110
+ */
111
+ #load_value(key, timestamp) {
112
+
113
+ let promise;
114
+
115
+ try {
116
+ promise = this.#load(key);
117
+ } catch (e) {
118
+ promise = Promise.reject(e);
119
+ }
120
+
121
+ const record = new Record(promise, timestamp);
122
+
123
+ this.#internal.put(key, record);
124
+
125
+ promise.catch(() => {
126
+ // mark as failure
127
+ record.failed = true;
128
+ });
129
+
130
+ return record;
131
+ }
132
+
133
+ /**
134
+ * Load new value for the key (happens asynchronously)
135
+ * @param {K} key
136
+ * @returns {Promise<V>}
137
+ */
138
+ refresh(key) {
139
+ const record = this.#load_value(key, current_time_in_seconds());
140
+
141
+ return record.value;
142
+ }
143
+
101
144
  /**
102
145
  *
103
146
  * @param {K} key
104
147
  * @return {Promise<V>}
105
148
  */
106
149
  async get(key) {
107
- const currentTime = performance.now() * 1e-3;
150
+ const currentTime = current_time_in_seconds();
108
151
 
109
152
  /**
110
153
  *
@@ -118,23 +161,7 @@ export class LoadingCache {
118
161
  ) {
119
162
 
120
163
  // record needs to be loaded
121
-
122
- let promise;
123
-
124
- try {
125
- promise = this.#load(key);
126
- }catch (e){
127
- promise = Promise.reject(e);
128
- }
129
-
130
- record = new Record(promise, currentTime);
131
-
132
- this.#internal.put(key, record);
133
-
134
- promise.catch(() => {
135
- // mark as failure
136
- record.failed = true;
137
- });
164
+ record = this.#load_value(key, currentTime);
138
165
 
139
166
  }
140
167
 
@@ -0,0 +1,9 @@
1
+ import { computeGreatestCommonDivisor } from "./computeGreatestCommonDivisor.js";
2
+
3
+ test("1 and 1", () => {
4
+ expect(computeGreatestCommonDivisor(1, 1)).toBe(1);
5
+ });
6
+
7
+ test("6 and 9", () => {
8
+ expect(computeGreatestCommonDivisor(6, 9)).toBe(3);
9
+ });
@@ -0,0 +1,9 @@
1
+ import { computeStatisticalMean } from "./computeStatisticalMean.js";
2
+
3
+ test("from just 1 item", () => {
4
+ expect(computeStatisticalMean([-7])).toEqual(-7)
5
+ });
6
+
7
+ test("from 2 items", () => {
8
+ expect(computeStatisticalMean([-7, 17])).toEqual(5)
9
+ });
@@ -5,7 +5,12 @@ test("unique values in base 10", () => {
5
5
  const values = [];
6
6
 
7
7
  for (let i = 0; i < 10; i++) {
8
- values.push(halton_sequence(10, i));
8
+ const v = halton_sequence(10, i);
9
+
10
+ expect(v).toBeGreaterThanOrEqual(0);
11
+ expect(v).toBeLessThanOrEqual(1);
12
+
13
+ values.push(v);
9
14
  }
10
15
 
11
16
  values.sort();
@@ -40,5 +40,14 @@ test("equality works as intended", () => {
40
40
  b.id = a.id;
41
41
 
42
42
  expect(b.equals(a)).toEqual(true);
43
-
43
+
44
+ });
45
+
46
+ test("toString on newly crated instance produces a valid string", () => {
47
+ const port = new Port();
48
+
49
+ const s = port.toString();
50
+
51
+ expect(typeof s).toBe('string');
52
+ expect(s.trim().length).toBeGreaterThan(0); // non-empty
44
53
  });
@@ -1,7 +1,6 @@
1
1
  import { assert } from "../../../assert.js";
2
2
  import { BitSet } from "../../../binary/BitSet.js";
3
3
  import { HashMap } from "../../../collection/HashMap.js";
4
- import { returnZero } from "../../../function/Functions.js";
5
4
  import { max2 } from "../../../math/max2.js";
6
5
  import DataType from "../../../parser/simple/DataType.js";
7
6
 
@@ -95,15 +94,13 @@ class ExpressionNode {
95
94
 
96
95
  /**
97
96
  *
98
- * @param {ExpressionNode} n
99
- * @return {number}
97
+ * @param {ReactiveExpression} exp
98
+ * @returns {number}
100
99
  */
101
- function scoreNode(n) {
102
- return n.getScore();
100
+ function scoreByTreeSize(exp){
101
+ return exp.computeTreeSize();
103
102
  }
104
103
 
105
- const temp_array = [];
106
-
107
104
  /**
108
105
  * Evaluate given state against multiple predicates, order of evaluation is controlled by scoring function, highest score nodes are evaluated first
109
106
  */
@@ -112,7 +109,7 @@ export class MultiPredicateEvaluator {
112
109
  *
113
110
  * @param {function(ReactiveExpression):number} scoringFunction
114
111
  */
115
- constructor(scoringFunction = returnZero) {
112
+ constructor(scoringFunction = scoreByTreeSize) {
116
113
  /**
117
114
  *
118
115
  * @type {function(ReactiveExpression): number}
@@ -9,6 +9,47 @@ import { MultiPredicateEvaluator } from "./MultiPredicateEvaluator.js";
9
9
  import { randomFromArray } from "../../../math/random/randomFromArray.js";
10
10
  import { randomFloatBetween } from "../../../math/random/randomFloatBetween.js";
11
11
  import { randomIntegerBetween } from "../../../math/random/randomIntegerBetween.js";
12
+ import { ReactiveEquals } from "../model/comparative/ReactiveEquals.js";
13
+
14
+ test('constructor does not throw', () => {
15
+ expect(() => new MultiPredicateEvaluator()).not.toThrow();
16
+ });
17
+
18
+ test('build empty', () => {
19
+ const processor = new MultiPredicateEvaluator();
20
+
21
+ expect(() => processor.build([])).not.toThrow();
22
+ });
23
+
24
+ test('match against empty list of predicates', () => {
25
+
26
+ const processor = new MultiPredicateEvaluator();
27
+ processor.build([]);
28
+
29
+ processor.initialize({});
30
+
31
+ expect(processor.next()).toBeUndefined();
32
+ });
33
+
34
+ test('match against one predicate', () => {
35
+
36
+ const processor = new MultiPredicateEvaluator();
37
+
38
+ const predicate = ReactiveEquals.from(new ReactiveReference('a'), ReactiveLiteralNumber.from(7));
39
+
40
+ processor.build([predicate]);
41
+
42
+ processor.initialize({ a: 1 });
43
+
44
+ expect(processor.next()).toBeUndefined();
45
+
46
+ processor.finalize();
47
+ processor.initialize({ a: 7 });
48
+
49
+ expect(processor.next()).toBe(predicate);
50
+ expect(processor.next()).toBeUndefined();
51
+
52
+ });
12
53
 
13
54
  test.skip('performance', () => {
14
55
  const random = seededRandom(12319);
@@ -56,6 +56,11 @@ export class BlackboardTrigger {
56
56
 
57
57
  if (this.isLinked) {
58
58
  //already linked
59
+
60
+ if (this.blackboard !== blackboard) {
61
+ throw new Error(`Already linked to another blackboard`);
62
+ }
63
+
59
64
  return;
60
65
  }
61
66
 
@@ -0,0 +1,24 @@
1
+ import { BlackboardTrigger } from "./BlackboardTrigger.js";
2
+ import { Blackboard } from "../../../../engine/intelligence/blackboard/Blackboard.js";
3
+
4
+ test("constructor does not throw", () => {
5
+ expect(() => new BlackboardTrigger()).not.toThrow();
6
+ });
7
+
8
+ test("numeric equality", () => {
9
+
10
+ const trigger = new BlackboardTrigger();
11
+ trigger.code = "a == 7";
12
+
13
+ const bb = Blackboard.fromJSON({
14
+ a: 7
15
+ });
16
+
17
+ trigger.link(bb);
18
+
19
+ expect(trigger.getExpression().getValue()).toBe(true);
20
+
21
+ bb.acquireNumber("a").set(1);
22
+
23
+ expect(trigger.getExpression().getValue()).toBe(false);
24
+ });
@@ -0,0 +1,38 @@
1
+ import ParserError from "./ParserError.js";
2
+ import Token from "./Token.js";
3
+ import TokenType from "./TokenType.js";
4
+ import DataType from "./DataType.js";
5
+
6
+ /**
7
+ *
8
+ * @param {string} text
9
+ * @param {number} cursor
10
+ * @param {number} length
11
+ * @returns {Token}
12
+ */
13
+ export function readBooleanToken(text, cursor, length) {
14
+ const firstChar = text.charAt(cursor);
15
+
16
+ let value;
17
+ let end = cursor;
18
+
19
+ if (firstChar === 't' && length - cursor >= 4) {
20
+ if (text.substring(cursor + 1, cursor + 4) === 'rue') {
21
+ value = true;
22
+ end = cursor + 4;
23
+ } else {
24
+ throw new ParserError(cursor, `expected 'true', instead got '${text.substring(cursor, cursor + 4)}'`, text);
25
+ }
26
+ } else if (firstChar === 'f' && length - cursor >= 5) {
27
+ if (text.substring(cursor + 1, cursor + 5) === 'alse') {
28
+ value = false;
29
+ end = cursor + 5;
30
+ } else {
31
+ throw new ParserError(cursor, `expected 'false', instead got '${text.substring(cursor, cursor + 5)}'`, text);
32
+ }
33
+ } else {
34
+ throw new ParserError(cursor, `expected 't' or 'f', instead got '${firstChar}'`, text);
35
+ }
36
+
37
+ return new Token(value, cursor, end, TokenType.LiteralBoolean, DataType.Boolean);
38
+ }
@@ -0,0 +1,95 @@
1
+ import ParserError from "./ParserError.js";
2
+ import Token from "./Token.js";
3
+ import DataType from "./DataType.js";
4
+
5
+ /**
6
+ *
7
+ * @param {string} text
8
+ * @param {number} cursor
9
+ * @param {number} length
10
+ * @returns {Token}
11
+ */
12
+ export function readHexToken(text, cursor, length) {
13
+ const c0 = text.charAt(cursor);
14
+ const c1 = text.charAt(cursor + 1);
15
+
16
+ if (c0 !== '0' || !(c1 === 'x' || c1 === 'X')) {
17
+ throw new ParserError(cursor, 'Expected hex prefix 0x', text);
18
+ }
19
+
20
+ let i = cursor + 2;
21
+ let value = 0;
22
+
23
+ main_loop: for (; i < length;) {
24
+ const char = text.charAt(i);
25
+ let digit;
26
+ switch (char) {
27
+ case '0':
28
+ digit = 0;
29
+ break;
30
+ case '1':
31
+ digit = 1;
32
+ break;
33
+ case '2':
34
+ digit = 2;
35
+ break;
36
+ case '3':
37
+ digit = 3;
38
+ break;
39
+ case '4':
40
+ digit = 4;
41
+ break;
42
+ case '5':
43
+ digit = 5;
44
+ break;
45
+ case '6':
46
+ digit = 6;
47
+ break;
48
+ case '7':
49
+ digit = 7;
50
+ break;
51
+ case '8':
52
+ digit = 8;
53
+ break;
54
+ case '9':
55
+ digit = 9;
56
+ break;
57
+ case 'a':
58
+ case 'A':
59
+ digit = 10;
60
+ break;
61
+ case 'b':
62
+ case 'B':
63
+ digit = 11;
64
+ break;
65
+ case 'c':
66
+ case 'C':
67
+ digit = 12;
68
+ break;
69
+ case 'd':
70
+ case 'D':
71
+ digit = 13;
72
+ break;
73
+ case 'e':
74
+ case 'E':
75
+ digit = 14;
76
+ break;
77
+ case 'f':
78
+ case 'F':
79
+ digit = 15;
80
+ break;
81
+ default:
82
+ if (i === cursor) {
83
+ //first character is not a digit
84
+ throw new ParserError(i, `Expected a digit [0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F] but got '${char}' instead`, text);
85
+ }
86
+ //not a digit
87
+ break main_loop;
88
+ }
89
+ i++;
90
+ value = value * 16 + digit;
91
+ }
92
+
93
+
94
+ return new Token(value, cursor, i, null, DataType.Number);
95
+ }
@@ -0,0 +1,21 @@
1
+ import { readHexToken } from "./readHexToken.js";
2
+
3
+ test("0x7", () => {
4
+ const token = readHexToken("0x7", 0, 3);
5
+ expect(token.value).toBe(7);
6
+ });
7
+
8
+ test("0xFF", () => {
9
+ const token = readHexToken("0xFF", 0, 4);
10
+ expect(token.value).toBe(0xFF);
11
+ });
12
+
13
+ test("0x1234567890", () => {
14
+ const token = readHexToken("0x1234567890", 0, 12);
15
+ expect(token.value).toBe(0x1234567890);
16
+ });
17
+
18
+ test("0xABCDEF", () => {
19
+ const token = readHexToken("0xABCDEF", 0, 8);
20
+ expect(token.value).toBe(0xABCDEF);
21
+ });
@@ -0,0 +1,43 @@
1
+ import ParserError from "./ParserError.js";
2
+ import Token from "./Token.js";
3
+ import TokenType from "./TokenType.js";
4
+ import DataType from "./DataType.js";
5
+
6
+ const RX_IDENTIFIER_CHAR = /^[a-zA-Z0-9_]/;
7
+ /**
8
+ * @readonly
9
+ * @type {RegExp}
10
+ */
11
+ export const RX_IDENTIFIER_FIRST_CHAR = /^[a-zA-Z_]/;
12
+
13
+ /**
14
+ * Read C99 style IDENTIFIER token
15
+ * @param {string} text
16
+ * @param {number} cursor
17
+ * @param {number} length
18
+ * @returns {Token}
19
+ */
20
+ export function readIdentifierToken(text, cursor, length) {
21
+ let i = cursor;
22
+
23
+
24
+ const firstChar = text.charAt(i);
25
+
26
+ if (!RX_IDENTIFIER_FIRST_CHAR.test(firstChar)) {
27
+ throw new ParserError(i, `Expected first character to match /${RX_IDENTIFIER_FIRST_CHAR.toString()}/, instead got '${firstChar}'`, text);
28
+ }
29
+
30
+ i++;
31
+
32
+ for (; i < length; i++) {
33
+ const char = text.charAt(i);
34
+
35
+ if (!RX_IDENTIFIER_CHAR.test(char)) {
36
+ break;
37
+ }
38
+ }
39
+
40
+ const value = text.substring(cursor, i);
41
+
42
+ return new Token(value, cursor, i, TokenType.Identifier, DataType.String);
43
+ }
@@ -0,0 +1,32 @@
1
+ import { readIdentifierToken } from "./readIdentifierToken.js";
2
+
3
+ test('parse identifier token starting with a number', () => {
4
+ expect(() => readIdentifierToken('0', 0, 1)).toThrow();
5
+ expect(() => readIdentifierToken('1', 0, 1)).toThrow();
6
+ expect(() => readIdentifierToken('2', 0, 1)).toThrow();
7
+ expect(() => readIdentifierToken('3', 0, 1)).toThrow();
8
+ expect(() => readIdentifierToken('4', 0, 1)).toThrow();
9
+ expect(() => readIdentifierToken('5', 0, 1)).toThrow();
10
+ expect(() => readIdentifierToken('6', 0, 1)).toThrow();
11
+ expect(() => readIdentifierToken('7', 0, 1)).toThrow();
12
+ expect(() => readIdentifierToken('8', 0, 1)).toThrow();
13
+ expect(() => readIdentifierToken('9', 0, 1)).toThrow();
14
+
15
+
16
+ expect(() => readIdentifierToken('9a', 0, 2)).toThrow();
17
+ });
18
+
19
+ test('parse identifier token with length 1', () => {
20
+ expect(readIdentifierToken('a', 0, 1).value).toBe('a');
21
+ expect(readIdentifierToken('A', 0, 1).value).toBe('A');
22
+ expect(readIdentifierToken('z', 0, 1).value).toBe('z');
23
+ expect(readIdentifierToken('Z', 0, 1).value).toBe('Z');
24
+ expect(readIdentifierToken('_', 0, 1).value).toBe('_');
25
+ });
26
+
27
+ test('parse identifier valid tokens', () => {
28
+ expect(readIdentifierToken('aa', 0, 2).value).toBe('aa');
29
+ expect(readIdentifierToken('a1', 0, 2).value).toBe('a1');
30
+ expect(readIdentifierToken('z ', 0, 2).value).toBe('z');
31
+ expect(readIdentifierToken('___ ', 0, 4).value).toBe('___');
32
+ });
@@ -0,0 +1,96 @@
1
+ import { skipWhitespace } from "./skipWhitespace.js";
2
+ import Token from "./Token.js";
3
+ import DataType from "./DataType.js";
4
+ import ParserError from "./ParserError.js";
5
+ import { readBooleanToken } from "./readBooleanToken.js";
6
+ import { readStringToken } from "./readStringToken.js";
7
+ import { readNumberToken } from "./readNumberToken.js";
8
+
9
+ /**
10
+ *
11
+ * @param {string} text
12
+ * @param {number} cursor
13
+ * @param {number} length
14
+ * @return {Token}
15
+ */
16
+ function readArrayLiteral(text, cursor, length) {
17
+ let i = cursor;
18
+
19
+ const firstChar = text.charAt(i);
20
+ if (firstChar !== '[') {
21
+ throw new ParserError(cursor, `expected array start: '[', got '${firstChar}' instead`, text);
22
+ }
23
+
24
+ i++;
25
+
26
+ const values = [];
27
+ while (i < length) {
28
+ i = skipWhitespace(text, i, length);
29
+
30
+ const token = readLiteralToken(text, i, length);
31
+
32
+ i = token.end;
33
+
34
+ values.push(token);
35
+
36
+ //try find separator
37
+ i = skipWhitespace(text, i, length);
38
+ if (i < length) {
39
+ const char = text.charAt(i);
40
+ if (char === ',') {
41
+ //separator
42
+ i++;
43
+ } else if (char === ']') {
44
+ //end of sequence
45
+ i++;
46
+ break;
47
+ } else {
48
+ //unexpected input
49
+ throw new ParserError(i, `Unexpected input '${char}', expected either separator ',' or end of sequence ']'`, text);
50
+ }
51
+ } else {
52
+ throw new ParserError(i, `Unterminated array literal`, text);
53
+ }
54
+ }
55
+
56
+ return new Token(values, cursor, i, 'array', DataType.Array);
57
+ }
58
+
59
+ /**
60
+ *
61
+ * @param {string} text
62
+ * @param {number} cursor
63
+ * @param {number} length
64
+ * @returns {Token}
65
+ */
66
+ function readLiteralToken(text, cursor, length) {
67
+ const firstChar = text.charAt(cursor);
68
+
69
+ switch (firstChar) {
70
+ case 't':
71
+ case 'f':
72
+ return readBooleanToken(text, cursor, length);
73
+ case '\"':
74
+ case "\'":
75
+ return readStringToken(text, cursor, length);
76
+ case '-':
77
+ case '+':
78
+ case '0':
79
+ case '1':
80
+ case '2':
81
+ case '3':
82
+ case '4':
83
+ case '5':
84
+ case '6':
85
+ case '7':
86
+ case '8':
87
+ case '9':
88
+ return readNumberToken(text, cursor, length);
89
+ case '[':
90
+ return readArrayLiteral(text, cursor, length);
91
+ default:
92
+ throw new ParserError(cursor, "Expected literal start, but found '" + firstChar + "'", text);
93
+ }
94
+ }
95
+
96
+ export { readLiteralToken };
@@ -0,0 +1,73 @@
1
+ import { skipWhitespace } from "./skipWhitespace.js";
2
+ import { readHexToken } from "./readHexToken.js";
3
+ import { readUnsignedIntegerToken } from "./readUnsignedIntegerToken.js";
4
+ import Token from "./Token.js";
5
+ import TokenType from "./TokenType.js";
6
+ import DataType from "./DataType.js";
7
+
8
+ /**
9
+ *
10
+ * @param {string} text
11
+ * @param {number} cursor
12
+ * @param {number} length
13
+ * @returns {Token}
14
+ */
15
+ export function readNumberToken(text, cursor, length) {
16
+ let i = cursor;
17
+
18
+ //read optional sign
19
+ function readSign(text) {
20
+ let sign = 1;
21
+ const firstChar = text.charAt(i);
22
+ if (firstChar === '-') {
23
+ sign = -1;
24
+ } else if (firstChar === '+') {
25
+ sign = 1;
26
+ } else {
27
+ return 1;
28
+ }
29
+
30
+ i = skipWhitespace(text, i + 1, length);
31
+
32
+ return sign;
33
+ }
34
+
35
+ const sign = readSign(text);
36
+
37
+ let value;
38
+
39
+ if (text.charAt(i) === '0' && (text.charAt(i + 1) === 'x' || text.charAt(i + 1) === 'X')) {
40
+ // hex number
41
+ const token = readHexToken(text, i, length);
42
+
43
+ i = token.end;
44
+
45
+ value = token.value;
46
+
47
+ } else {
48
+
49
+ const wholePart = readUnsignedIntegerToken(text, i, length);
50
+
51
+ i = wholePart.end;
52
+
53
+ value = wholePart.value;
54
+
55
+ if (i < length) {
56
+ const dot = text.charAt(i);
57
+ if (dot === '.') {
58
+ i++;
59
+ const fraction = readUnsignedIntegerToken(text, i, length);
60
+
61
+ const digits = (fraction.end - fraction.start);
62
+
63
+ value += fraction.value / Math.pow(10, digits);
64
+
65
+ i = fraction.end;
66
+ }
67
+ }
68
+ }
69
+
70
+ value *= sign;
71
+
72
+ return new Token(value, cursor, i, TokenType.LiteralNumber, DataType.Number);
73
+ }