1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-07-02 23:37:22 -07: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 10c25fd478
commit c21aabc7ed

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>(){{
}};
}