| 1 | package com.ibm.ai4code.parser.commons; |
| 2 | import org.apache.commons.cli.*; |
| 3 | public class Args { |
| 4 | public static boolean MULTI = false; // use "single" g4 file, or use "multi" g4 file, where we have different toke types |
| 5 | public static void parse(CommandLine cmd) { |
| 6 | if(cmd.hasOption("multi")) { |
| 7 | MULTI = true; |
| 8 | } |
| 9 | } |
| 10 | |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected