prism 0.30.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/CHANGELOG.md +31 -1
 - data/README.md +3 -1
 - data/config.yml +185 -126
 - data/docs/serialization.md +3 -0
 - data/ext/prism/api_node.c +2843 -2085
 - data/ext/prism/extconf.rb +1 -1
 - data/ext/prism/extension.c +35 -25
 - data/ext/prism/extension.h +2 -2
 - data/include/prism/ast.h +1048 -69
 - data/include/prism/defines.h +9 -0
 - data/include/prism/diagnostic.h +11 -3
 - data/include/prism/options.h +55 -1
 - data/include/prism/parser.h +27 -3
 - data/include/prism/regexp.h +2 -1
 - data/include/prism/util/pm_integer.h +6 -6
 - data/include/prism/util/pm_newline_list.h +11 -0
 - data/include/prism/util/pm_string.h +1 -0
 - data/include/prism/version.h +3 -3
 - data/lib/prism/desugar_compiler.rb +111 -74
 - data/lib/prism/dispatcher.rb +2 -1
 - data/lib/prism/dot_visitor.rb +21 -31
 - data/lib/prism/dsl.rb +656 -471
 - data/lib/prism/ffi.rb +3 -0
 - data/lib/prism/inspect_visitor.rb +285 -57
 - data/lib/prism/mutation_compiler.rb +5 -5
 - data/lib/prism/node.rb +2282 -4754
 - data/lib/prism/node_ext.rb +72 -11
 - data/lib/prism/parse_result/errors.rb +65 -0
 - data/lib/prism/parse_result/newlines.rb +28 -28
 - data/lib/prism/parse_result.rb +25 -2
 - data/lib/prism/reflection.rb +7 -7
 - data/lib/prism/serialize.rb +468 -610
 - data/lib/prism/translation/parser/compiler.rb +18 -18
 - data/lib/prism/translation/parser/lexer.rb +1 -1
 - data/lib/prism/translation/parser.rb +3 -3
 - data/lib/prism/translation/ripper.rb +14 -14
 - data/lib/prism/translation/ruby_parser.rb +43 -7
 - data/prism.gemspec +3 -1
 - data/rbi/prism/dsl.rbi +521 -0
 - data/rbi/prism/node.rbi +1456 -5616
 - data/rbi/prism.rbi +16 -16
 - data/sig/prism/dsl.rbs +189 -305
 - data/sig/prism/node.rbs +702 -603
 - data/sig/prism/parse_result.rbs +2 -0
 - data/src/diagnostic.c +22 -6
 - data/src/node.c +277 -284
 - data/src/options.c +18 -0
 - data/src/prettyprint.c +99 -108
 - data/src/prism.c +1282 -760
 - data/src/regexp.c +72 -4
 - data/src/serialize.c +165 -50
 - data/src/token_type.c +2 -2
 - data/src/util/pm_integer.c +14 -14
 - data/src/util/pm_newline_list.c +29 -0
 - data/src/util/pm_string.c +9 -5
 - metadata +4 -2
 
    
        data/lib/prism/ffi.rb
    CHANGED
    
    | 
         @@ -431,6 +431,9 @@ module Prism 
     | 
|
| 
       431 
431 
     | 
    
         
             
                  template << "C"
         
     | 
| 
       432 
432 
     | 
    
         
             
                  values << { nil => 0, "3.3.0" => 1, "3.3.1" => 1, "3.4.0" => 0, "latest" => 0 }.fetch(options[:version])
         
     | 
| 
       433 
433 
     | 
    
         | 
| 
      
 434 
     | 
    
         
            +
                  template << "C"
         
     | 
| 
      
 435 
     | 
    
         
            +
                  values << (options[:encoding] == false ? 1 : 0)
         
     | 
| 
      
 436 
     | 
    
         
            +
             
     | 
| 
       434 
437 
     | 
    
         
             
                  template << "L"
         
     | 
| 
       435 
438 
     | 
    
         
             
                  if (scopes = options[:scopes])
         
     | 
| 
       436 
439 
     | 
    
         
             
                    values << scopes.length
         
     |