add comments
This commit is contained in:
parent
a722e73957
commit
c236ca23a5
2 changed files with 2 additions and 0 deletions
|
@ -220,6 +220,7 @@ function tokenize(input) {
|
|||
};
|
||||
console.log(input + ", result: ");
|
||||
console.log(thenDo(input_matchee_pair, integer));
|
||||
// TODO: id, string, space, basic operator, 3 marks: @, {, }.
|
||||
}
|
||||
exports.tokenize = tokenize;
|
||||
tokenize("+123");
|
||||
|
|
|
@ -242,6 +242,7 @@ export function tokenize(input : string){
|
|||
}
|
||||
console.log(input+", result: ");
|
||||
console.log(thenDo(input_matchee_pair, integer));
|
||||
// TODO: id, string, space, basic operator, 3 marks: @, {, }.
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue