Houjie
2025-07-24 52a3ff1bce1417b39f6872d8e8cb378e9c2ccc6f
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
var State;
(function (State) {
    State[State["NUMERIC"] = 0] = "NUMERIC";
    State[State["ALPHA"] = 1] = "ALPHA";
    State[State["ISO_IEC_646"] = 2] = "ISO_IEC_646";
})(State || (State = {}));
export default class CurrentParsingState {
    constructor() {
        this.position = 0;
        this.encoding = State.NUMERIC;
    }
    getPosition() {
        return this.position;
    }
    setPosition(position) {
        this.position = position;
    }
    incrementPosition(delta) {
        this.position += delta;
    }
    isAlpha() {
        return this.encoding === State.ALPHA;
    }
    isNumeric() {
        return this.encoding === State.NUMERIC;
    }
    isIsoIec646() {
        return this.encoding === State.ISO_IEC_646;
    }
    setNumeric() {
        this.encoding = State.NUMERIC;
    }
    setAlpha() {
        this.encoding = State.ALPHA;
    }
    setIsoIec646() {
        this.encoding = State.ISO_IEC_646;
    }
}