UNPKG

@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

12 lines (11 loc) 357 B
import { Token } from './token'; import { LiteralValue } from '../util'; export declare class LiteralToken extends Token { input: string; begin: number; end: number; file?: string | undefined; content: LiteralValue; literal: string; constructor(input: string, begin: number, end: number, file?: string | undefined); }