mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00

This commit makes the compiler pass use different classes in order to represent the metadata. This enables adding per-class toString/convert functions. This enables easy type checking and conversion in the `:set` excmd.
4 lines
196 B
TypeScript
4 lines
196 B
TypeScript
export { SymbolMetadata } from "./SymbolMetadata"
|
|
export { ClassMetadata } from "./ClassMetadata"
|
|
export { FileMetadata } from "./FileMetadata"
|
|
export { ProgramMetadata } from "./ProgramMetadata"
|