Compiler compiles utilities representation of path templates into marshallable operations. They can be unmarshalled by runtime.NewPattern.
| 27 | // Compiler compiles utilities representation of path templates into marshallable operations. |
| 28 | // They can be unmarshalled by runtime.NewPattern. |
| 29 | type Compiler interface { |
| 30 | Compile() Template |
| 31 | } |
| 32 | |
| 33 | type op struct { |
| 34 | // code is the opcode of the operation |
no outgoing calls
no test coverage detected