Chushu Gao

Results 3 issues of Chushu Gao

## Describe the bug A clear and concise description of what the bug is. ## To Reproduce Parsing the partial uri in the following FASTEN uri fasten://mvn!nl.tudelft.jpacman:jpacman-framework$8.1.1/nl.tudelft.jpacman.ui/PacManUiBuilder$addStopButton%28Lnl$tudelft$jpacman$game$Game%3A%29V%3A30$Lambda.$newInstance(%2Fnl.tudelft.jpacman.game%2FGame)PacManUiBuilder$addStopButton%28Lnl$tudelft$jpacman$game$Game%3A%29V%3A30$Lambda output: [nl.tudelft.jpacman.ui, PacManUiBuilder$addStopButton(Lnl$tudelft$jpacman$game$Game:)V:30$Lambda,...

See below the failed test: ``` def test_structure_in_static_block(self): result = get_java_function_list(""" static { if(){}; catch(){} } """) self.assertEqual(0, len(result)) ################ AssertionError: 0 != 2 ```

`ThreadLocal` returned as function name that is problematic. ``` private ThreadLocal startTime = new ThreadLocal() { @Override protected Long initialValue() { return 0L; } }; ```