Ross Patterson
Ross Patterson
Make `lark.lark` parse the same grammar as `load_grammar.py`, and make `grammar.md` document it more fully. Fixes #391, #1382, #1384. - All scenarios have tests in new file `tests/test_lark_lark.py`. Each test...
I needed to grep for a JSON value across a large collection of files, and found myself doing `find . -type f -exec gron {} \; | grep whatever`, but...
Fixes #97. I have a fix for this, but IMHO, it's ugly. The inability to run a `` synchronously with the page load makes it hard to get the `railroad.js`...
When using the `Diagram.addTo()` method in `railroad.js` without specifying a target element, the method cannot determine the correct `` tag if the tag has `type=module` coded. This is because ES...
I'm trying to read a large value from a Rexx variable, and write it to disk, using `EXECIO DISKW`. Looking at `DMSXIO`, it appears `GETREXXV` is receiving `SHVTRUNC` from Rexx...
The `ZAP` command incorrectly issues message `DMS210E FILE fn ft IS ON A READ/ONLY DISK` and aborts for any on files dated 20xx, even on read/write disks. Update `HRC105DS` put...
The `NUCEXT RENAME` macro invokes `DMSSNX` to rename a nucleus extension. The plist is documented in `DMSSNX ASSEMBLE` as: ```asm * 5) Rename a nucleus extension * DC CL8'NUCEXT' *...
The `NUCEXT` and `SUBCOM` macros do not set the function name when coded in the execute form (_i.e._, `MF=(E,...)`).
The `NUCEXT` and `SUBCOM` macros should not require any parameters besides the operation type when coded with the list form (_i.e._, `MF=L`). The `NAME=` is incorrectly required for all operations...
`EXECIO DISKW` incorrectly treats an empty variable specified in the `VAR` option as end-of-file on input. Instead, it should write an empty line to the output file. Test case: ```Rexx...