idea: implement function call completion (limited)

This commit is contained in:
2023-09-21 21:33:34 -07:00
parent d12aadf18c
commit c92a111af7
5 changed files with 76 additions and 12 deletions

View File

@ -0,0 +1,7 @@
package gay.pizza.pork.parser
fun CharSource.readToString(): String = buildString {
while (peek() != CharSource.NullChar) {
append(next())
}
}