MCPcopy Create free account
hub / github.com/Whiley/WhileyCompiler / parseLines

Method parseLines

src/main/java/wycc/util/testing/TestFile.java:271–280  ·  view source on GitHub ↗
(Reader in)

Source from the content-addressed store, hash-verified

269 }
270
271 private static List<String> parseLines(Reader in) throws IOException {
272 ArrayList<String> lines = new ArrayList<>();
273 try (BufferedReader br = new BufferedReader(in)) {
274 String line;
275 while ((line = br.readLine()) != null) {
276 lines.add(line);
277 }
278 }
279 return lines;
280 }
281
282 private static int parseConfig(List<String> lines, Map<String,Object> config) {
283 int i = 0;

Callers 1

parseMethod · 0.95

Calls 1

addMethod · 0.65

Tested by

no test coverage detected