[lua] Add missing FileHandle.lines() function (#10974)
This allows to iterate over all available lines of a file handle, e.g.
```haxe
final fh = lua.Io.popen(cmd);
if (fh != null) {
for (line in p.lines()) {
trace(line);
}
}
```
Sebastian Thomschke%!s(int64=2) %!d(string=hai) anos