mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-08-03 21:21:33 +00:00
idea: implement function call completion (limited)
This commit is contained in:
@ -0,0 +1,7 @@
|
||||
package gay.pizza.pork.parser
|
||||
|
||||
fun CharSource.readToString(): String = buildString {
|
||||
while (peek() != CharSource.NullChar) {
|
||||
append(next())
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user