Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ out.svg
/gemfiles/typecheck/bin/
/include/prism/ast.h
/include/prism/diagnostic.h
/include/prism/node_new.h
/javascript/node_modules/
/javascript/package-lock.json
/javascript/src/deserialize.js
Expand Down
1 change: 1 addition & 0 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ A lot of code in prism's repository is templated from a single configuration fil
* `ext/prism/api_node.c` - for defining how to build Ruby objects for the nodes out of C structs
* `include/prism/ast.h` - for defining the C structs that represent the nodes
* `include/prism/diagnostic.h` - for defining the diagnostics
* `include/prism/node_new.h` - for defining the functions that create the nodes in C
* `javascript/src/deserialize.js` - for defining how to deserialize the nodes in JavaScript
* `javascript/src/nodes.js` - for defining the nodes in JavaScript
* `java/org/ruby_lang/prism/AbstractNodeVisitor.java` - for defining the visitor interface for the nodes in Java
Expand Down
1 change: 1 addition & 0 deletions prism.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ Gem::Specification.new do |spec|
"include/prism/diagnostic.h",
"include/prism/encoding.h",
"include/prism/node.h",
"include/prism/node_new.h",
"include/prism/options.h",
"include/prism/parser.h",
"include/prism/prettyprint.h",
Expand Down
Loading
Loading