MCPcopy Create free account
hub / github.com/aurelia/binding / constructor

Method constructor

src/parser.js:30–44  ·  view source on GitHub ↗
(src)

Source from the content-addressed store, hash-verified

28 }
29
30 constructor(src) {
31 /** Current char index */
32 this.idx = 0;
33 /** Start index of the current char scan */
34 this.start = 0;
35 /** Input source */
36 this.src = src;
37 this.len = src.length;
38 /** Current token */
39 this.tkn = T$EOF;
40 /** Current token value */
41 this.val = undefined;
42 /** Current char */
43 this.ch = src.charCodeAt(0);
44 }
45
46 parseBindingBehavior() {
47 this.nextToken();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected