Files
liquidjs/src/parser/html-token.ts
T
harttle 677e8511e6 chore(TypeScript): refactor objects into classes
fix: `Nil`(null, undefined) now renders as empty string
change: `parser.parseValue()` renamed to `parser.parseOutput`
change: registered tags/filters become static and shared across different liquid instances
2019-02-17 04:55:30 +08:00

10 lines
214 B
TypeScript

import Token from './token'
export default class HTMLToken extends Token {
constructor(str, begin, input, file, line) {
super(str, begin, input, file, line)
this.type = 'html'
this.value = str
}
}