Philip K.F. Hölzenspies

Results 8 issues of Philip K.F. Hölzenspies

There should be a `GET_VERSION` and a `GET_SCHEMA_VERSION` command defined on `pkl-server`, so-as to get versions from the server itself (instead of running the CLI separately)

As per the change in `test/corpus/basic/comments.txt` in #16; ``` y = 20 /* multi line /* nested */ comment */ z = 30 ``` produces ``` (classProperty (identifier) (intLiteral)) (blockComment)...

I'm putting this up as a discussion piece, more than anything. Wins are minimal, at best. The thinking was that every `VmObject` gets its `cachedValues` initialised by default, but only...

Currently, `toTyped` is _shallow_. For example, given ``` class Bird { name: String diet: Listing } local example: Dynamic = new { name = "Pigeon" diet { "seeds" "fast food"...

Given ``` class Bird { name: String = "DEFAULT" colloquialName: String = name } ``` evaluating ``` new Dynamic { name = "Pigeon" }.toTyped(Bird) ``` results in ``` new Bird...