mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-16 12:50:38 -07:00
feat: throw an Error if delimiter not matched
This commit is contained in:
+3
-1
@@ -1,11 +1,13 @@
|
||||
export default class Token {
|
||||
type: string
|
||||
line: number
|
||||
col: number
|
||||
raw: string
|
||||
input: string
|
||||
file: string
|
||||
value: string
|
||||
constructor (raw, pos, input, file, line) {
|
||||
constructor (raw, col, input, file, line) {
|
||||
this.col = col
|
||||
this.line = line
|
||||
this.raw = raw
|
||||
this.input = input
|
||||
|
||||
Reference in New Issue
Block a user