Carl Gay
Carl Gay
Would be nice to have a warning for functions like this, where an explicit values list is provided in the signature and an explicit values list is supplied in return...
https://opendylan.org/documentation/library-reference/genindex.html https://opendylan.org/documentation/library-reference/dylan-apiindex.html
From a Gitter conversation... ------------------------------ Carl Gay @cgay Nov 29 17:16 It's surprising to me that some of the arithmetic functions in the DRM are defined on `` rather than,...
This assertion in dylan-test-suite fails: ``` check-condition("one key call wrong supplied", , begin local method m (#key x) x end; // Stifle compiler warning we get if called directly. let...
This assertion from the dylan-test-suite `limited-is-limited` test fails: ```dylan let = limited(, of: ); let x = make(, size: 10, fill: 10); //---*** sadly, the following fails due to limited-vector...
Both the system and io test suites import common-dylan-test-suite. They do this to get the "stream testing protocol", apparently, based on a comment at the import site. That protocol should...
Building the docs there are many warnings that should be fixed. Some examples are below but there are a lot more if you build all docs as is done in...
Open Dylan 2019.1 I expect a "clean" build to completely ignore any previous build products. ``` cd ${DYLAN}/ws.all && dylan-compiler -build -clean testworks-test-suite-app Internal error: Assertion failed: Dylan database/compiler version...
...because new users probably have no clue it's in _build/lib or _build/bin, but also on general principle. (As it turns out my link is silently failing, which is why I...
https://opendylan.org/books/drm/Parameter_Lists > Keyword parameter types are not allowed in generic function definitions,... OD 2019.1 issues no warning for this: ``` define open generic encode-json (stream :: , object :: ,...