Paul Bone
Paul Bone
If you run `make test` then `PZ_RUNTIME_OPTS=some_option make test` the 2nd command uses the cached results of the first, it shouldn't if `PZ_RUNTIME_OPTS` or `PZ_RUNTIME_DEV_OPTS` is set. And maybe for...
The Plasma build system has no concept of C header files. that means if a header is modified it won't rebuild the C parts that need rebuilding. This is a...
The build system will cause an interface file to depend on all the module imports included by the module whose interface is being built, rather than only those that interface...
Plasma's grammar in plasma_ref.txt doesn't define "Const" Const is part of expressions but it isn't defined anywhere. It should be defined as literal strings and numbers. I am in the...
The FFI currently accesses the VM's structures to read and return parameters. In a VM with different structures that won't work. We should re-impelent the FFI to pass those parameters...
Currently anyone using the FFI must arrange for foreign function implementations to be registered with the vm. This should be automatic and provided in two ways: * The Plasma compiler...