A semantic search engine for source code https://bitshift.benkurtovic.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
262 B

  1. package org.bitshift.parsing.parsers;
  2. import org.bitshift.parsing.symbols.Symbols;
  3. public abstract class Parser {
  4. protected String source;
  5. public Parser(String source) {
  6. this.source = source;
  7. }
  8. abstract Symbols genSymbols();
  9. }