MCPcopy Create free account
hub / github.com/acsoto/BUAA-Compiler / FileProcessor

Method FileProcessor

src/FileProcessor.java:9–14  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

7 private FileWriter errorWriter;
8
9 public FileProcessor() throws IOException {
10 reader = new FileReader(new File("testfile.txt"));
11 code = transferFileToCode();
12 writer = new FileWriter(new File("pcoderesult.txt"));
13 errorWriter = new FileWriter(new File("error.txt"));
14 }
15
16 private String transferFileToCode() throws IOException {
17 BufferedReader bf = new BufferedReader(reader);

Callers

nothing calls this directly

Calls 1

transferFileToCodeMethod · 0.95

Tested by

no test coverage detected