GetStmtParser returns parser for specific per function
(funcName string)
| 65 | |
| 66 | //GetStmtParser returns parser for specific per function |
| 67 | func GetStmtParser(funcName string) StmtParser { |
| 68 | return parsers[funcName] |
| 69 | } |
| 70 | |
| 71 | type breakCode struct { |
| 72 | } |