| 5 | ) |
| 6 | |
| 7 | type LuaBlock struct { |
| 8 | Directives []IDirective |
| 9 | Name string |
| 10 | Comment string |
| 11 | LuaCode string |
| 12 | Line int |
| 13 | } |
| 14 | |
| 15 | func NewLuaBlock(directive IDirective) (*LuaBlock, error) { |
| 16 | if block := directive.GetBlock(); block != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected