syntax-tree
Here are 198 public repositories matching this topic...
-
Updated
Jun 10, 2020 - JavaScript
As the title says, Enumeration has two properties for the same information.
public Type Type { get; set; }
public BuiltinType BuiltinType { get; set; }
We should remove BuiltinType and have it just as a desugared property of Type.
-
Updated
Mar 2, 2020
-
Updated
May 13, 2019 - JavaScript
I ran into problems with the extremely long APP_CLASSPATH variable in joern-parse.bat when running joern-cli on Windows. The command was too long and the script would die when trying to set the classpath. I got around it by simply passing a wildcard (%APP_LIB_DIR%/*) to the -cp argument at the end of the script.
I'd file a PR but I can't find the script in this repo.
Example formatter output of reduced test case:
task t;
a_pkg::foo #(x)::func();
endtaskShould be:
task t;
a_pkg::foo#(x)::func();
endtaskAdd XMLComment type
XML comments could (at some future point) be parsed.
Perhaps it's a good idea to have them labelled as XMLdoc comments separately.
http://docwiki.embarcadero.com/RADStudio/Berlin/en/XML_Documentation_Comments
See the proposed code changes in the follow-up post.
-
Updated
May 25, 2020 - Ruby
-
Updated
May 9, 2020 - Julia
-
Updated
May 31, 2020 - Cirru
-
Updated
May 20, 2020 - C
-
Updated
Mar 2, 2020
-
Updated
May 10, 2015 - Java
-
Updated
May 15, 2020 - PHP
-
Updated
Apr 29, 2019 - JavaScript
-
Updated
May 29, 2019 - Rust
-
Updated
May 26, 2020 - Jupyter Notebook
-
Updated
May 31, 2020 - JavaScript
-
Updated
Apr 29, 2020 - COBOL
There are two small mistakes in the sample code in readme.md.
var g = new function()
{
var delimiter = ","; // need to define delimiter first
this.textdata = m.notChar('\n\r"' + delimiter);
...
}
console.log(parser(input));
- the variable delimiter is not defined;
- last line should be
parser, notparse.
Being able to set not just the color but also the italics or bold behavior of certain syntax terms would be great. If this is already possible it would be great if it could be added to the documentation, as I do not currently see any way to do this.
API Documentation
With Calyx almost ready for a 1.0 release, it does seem that documentation will need to be something to focus on.
I do think our current README is understandable, as it stands, but maybe I'm too used to the gem to really know whether the docs actually explain anything. And, of course, maybe a README may not be enough to show how Calyx can be used (and we may need to include a tutorial as well...b
-
Updated
Sep 5, 2019 - F#
Improve this page
Add a description, image, and links to the syntax-tree topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the syntax-tree topic, visit your repo's landing page and select "manage topics."
My presumption is that there should be a way to do this automatically as part of the release process.
I'm not 100% how best to achieve this, so before running with it I'd like to open it out for discussion.
To start things off, this SO question has a few answers/suggestions.
One suggestio