Select Git revision
parser.ts 315 B
/**
* Copyright (c) 2018 Mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author David Sehnal <david.sehnal@gmail.com>
* @author Alexander Rose <alexanderose@weirdbyte.de>
*/
import Expression from '../expression'
type Parser = (source: string) => Expression
export default Parser