1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-11-17 08:03:09 -08:00

Create empty class, getting ready to write tests.

This commit is contained in:
Danila Fedorin 2017-07-29 21:49:36 -07:00
parent d12d53032b
commit 7b2ee1c87a

View File

@ -0,0 +1,12 @@
package org.nwapw.abacus.tests;
import org.nwapw.abacus.lexing.Lexer;
import org.nwapw.abacus.tree.TokenType;
public class LexerTests {
Lexer<TokenType> lexer = new Lexer<TokenType>(){{
}};
}