(inputs []string)
| 1025 | } |
| 1026 | |
| 1027 | func inputsToString(inputs []string) string { |
| 1028 | input := "" |
| 1029 | |
| 1030 | for inputIndex := 0; inputIndex < len(inputs); inputIndex++ { |
| 1031 | input += inputs[inputIndex] + "\n" |
| 1032 | } |
| 1033 | |
| 1034 | return input |
| 1035 | } |
| 1036 | |
| 1037 | func getSequences(input string) *ast.Sequence { |
| 1038 | lexerInstance := lexer.RunLexer(input) |
no outgoing calls
no test coverage detected