Derrell Lipman
Derrell Lipman
Using asn1c from github, master as of 11 Nov 2020, hash 00fa516f3c6ab247c263df6828143c34b1fbffa4 **To replicate:** In an otherwise empty directory, create **test.asn**: ``` TestModule DEFINITIONS ::= BEGIN Test ::= SEQUENCE {...
With an arbitrary set of object changes, including keys that contain dots or slashes, it can be difficult to retrieve, via dot notation, an object whose property is changing. Consider...
These ought to be documented and have more appropriate initializers than `undefined`. The new class system detects and warns of undeclared member variables. We'd be good to have these all...
Found by code inspection; no test to confirm is readily available... According to the documentation at https://qooxdoo.org/documentation/v7.1/#/core/understanding_properties?id=enabling-theme-support, a user-provided property value is supposed to have higher priority than a theme's...
From @johnspackman on gitter: > Currently, when building apps for the browser and the server out of one code base, it is possible to accidentally trigger a class to be...
If `compile.json` has something in it that does not match the schema, such as the `commonjs-modules` block in the following example, running `qx clean` fails with ``` Error: Error validating...
After installing a package with `npx qx pkg add `, simply restarting `npx qx serve` isn't enough for the package to be found and used. It is necessary to do...
As discussed on gitter: Derrell wrote: > When working with code from outside of the qooxdooverse, it's not uncommon to create a class that extends Object (not qx.core.Object). That works...
Consider this application and test class X: ``` qx.Class.define("xxx.Application", { extend : qx.application.Basic, members : { main : function() { let x = new xxx.X(); console.log("x._getValue()=", x._getValue()); console.log("x.value=", x.value); }...
**Describe the bug** A mixin constructor can be called later than the mixin's members. This precludes having the mixin constructor initialize things needed by those members. **To Reproduce** Load this...