Improve .debug_line parser performance

This commit is contained in:
Derek Parker
2014-07-14 21:41:15 -05:00
parent c546ea2ef7
commit 6b64296bca
5 changed files with 27 additions and 47 deletions

View File

@ -32,6 +32,6 @@ func TestParseString(t *testing.T) {
str, _ := ParseString(bstr)
if str != "hi" {
t.Fatal("String was not parsed correctly")
t.Fatalf("String was not parsed correctly %#v", str)
}
}