mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-16 21:00:40 -07:00
14 lines
305 B
TypeScript
14 lines
305 B
TypeScript
import { Token } from './token'
|
|
import { TokenKind } from '../parser/token-kind'
|
|
|
|
export class QuotedToken extends Token {
|
|
constructor (
|
|
public input: string,
|
|
public begin: number,
|
|
public end: number,
|
|
public file?: string
|
|
) {
|
|
super(TokenKind.Quoted, input, begin, end, file)
|
|
}
|
|
}
|