ember-material-icons
Version:
Google Material icons for your ember-cli app
14 lines (10 loc) • 322 B
text/typescript
import VM from '../vm/append';
import { PathReference } from '@glimmer/reference';
export { CompiledArgs } from './expressions/args';
export abstract class CompiledExpression<T> {
type: string;
abstract evaluate(vm: VM): PathReference<T>;
toJSON(): string {
return `UNIMPL: ${this.type.toUpperCase()}`;
}
}