@micro-os-plus/hello-world-qemu-template
Version:
A source xPack / npm package with a template to generate semihosted Hello World projects running on QEMU
10 lines (9 loc) • 431 B
TypeScript
import { Token } from './token';
import { TokenKind } from '../parser';
export declare abstract class DelimitedToken extends Token {
trimLeft: boolean;
trimRight: boolean;
contentRange: [number, number];
constructor(kind: TokenKind, [contentBegin, contentEnd]: [number, number], input: string, begin: number, end: number, trimLeft: boolean, trimRight: boolean, file?: string);
get content(): string;
}