(l *State, functions []RegistryFunction)
| 455 | func NewLibraryTable(l *State, functions []RegistryFunction) { l.CreateTable(0, len(functions)) } |
| 456 | |
| 457 | func NewLibrary(l *State, functions []RegistryFunction) { |
| 458 | NewLibraryTable(l, functions) |
| 459 | SetFunctions(l, functions, 0) |
| 460 | } |
| 461 | |
| 462 | func skipComment(r *bufio.Reader) (bool, error) { |
| 463 | bom := "\xEF\xBB\xBF" |
no test coverage detected