trlc
trlc copied to clipboard
Treat Requirements Like Code
adds tracing for chapter 11 ("Names")
Motivation: Access the AST object behind a click or hover action within the vscode extention while only providing it's location. Common features like go-to def, show references or show user...
People love to copy-paste
The worst offenders are for `tests-system/bulk` are: ``` ncalls tottime percall cumtime percall filename:lineno(function) 1 0.000 0.000 31.589 31.589 trlc/trlc.py:21() 1 0.000 0.000 31.571 31.571 trlc/trlc.py:490(main) 1 0.000 0.000 31.558...
In the LRM we have something like this: ```trlc bnf = ''' foo ::= bar { wibble } ''' ``` This comes out as ```plain foo ::= bar { wibble...