コード例 #1
0
ファイル: Parse.java プロジェクト: hubertlee915/Interpreter
 public void lex() {
   try {
     tok = split.getToken();
     text = tok.getString();
     val = tok.getType();
   } catch (Exception e) {
     e.printStackTrace();
   }
 }