You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tlang/source/tlang/compiler/lexer/core/package.d

19 lines
335 B
D

/**
* Base definitions relating to the lexer
*/
module tlang.compiler.lexer.core;
/**
* Lexer interface definition
*/
public import tlang.compiler.lexer.core.lexer;
/**
* Token definition
*/
public import tlang.compiler.lexer.core.tokens;
/**
* Exception definitions
*/
public import tlang.compiler.lexer.core.exceptions;