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.
 
 
 
 
 
 

18 lines
436 B

  1. package com.bitshift.parsing.symbols;
  2. import java.util.ArrayList;
  3. public abstract class Symbols {
  4. public Symbols() {
  5. }
  6. public static ArrayList<Integer> createCoord(Integer startLine, Integer startCol, Integer endLine, Integer endCol) {
  7. ArrayList<Integer> coord = new ArrayList<Integer>(4);
  8. coord.add(startLine); coord.add(startCol); coord.add(endLine); coord.add(endCol);
  9. return coord;
  10. }
  11. }