prism 1.2.0 → 1.4.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.
Files changed (68) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +46 -1
  3. data/Makefile +1 -1
  4. data/config.yml +429 -2
  5. data/docs/build_system.md +8 -11
  6. data/docs/releasing.md +1 -1
  7. data/docs/relocation.md +34 -0
  8. data/docs/ruby_api.md +1 -1
  9. data/ext/prism/api_node.c +1824 -1305
  10. data/ext/prism/extconf.rb +13 -36
  11. data/ext/prism/extension.c +298 -109
  12. data/ext/prism/extension.h +4 -4
  13. data/include/prism/ast.h +442 -2
  14. data/include/prism/defines.h +26 -8
  15. data/include/prism/options.h +47 -1
  16. data/include/prism/util/pm_buffer.h +10 -0
  17. data/include/prism/version.h +2 -2
  18. data/include/prism.h +51 -4
  19. data/lib/prism/dot_visitor.rb +26 -0
  20. data/lib/prism/dsl.rb +14 -6
  21. data/lib/prism/ffi.rb +93 -28
  22. data/lib/prism/inspect_visitor.rb +4 -1
  23. data/lib/prism/node.rb +1886 -105
  24. data/lib/prism/parse_result/errors.rb +1 -1
  25. data/lib/prism/parse_result/newlines.rb +1 -1
  26. data/lib/prism/parse_result.rb +54 -2
  27. data/lib/prism/polyfill/append_as_bytes.rb +15 -0
  28. data/lib/prism/reflection.rb +4 -4
  29. data/lib/prism/relocation.rb +504 -0
  30. data/lib/prism/serialize.rb +1252 -765
  31. data/lib/prism/string_query.rb +30 -0
  32. data/lib/prism/translation/parser/builder.rb +61 -0
  33. data/lib/prism/translation/parser/compiler.rb +228 -162
  34. data/lib/prism/translation/parser/lexer.rb +435 -61
  35. data/lib/prism/translation/parser.rb +51 -3
  36. data/lib/prism/translation/parser35.rb +12 -0
  37. data/lib/prism/translation/ripper.rb +13 -3
  38. data/lib/prism/translation/ruby_parser.rb +17 -7
  39. data/lib/prism/translation.rb +1 -0
  40. data/lib/prism.rb +9 -7
  41. data/prism.gemspec +11 -1
  42. data/rbi/prism/dsl.rbi +10 -7
  43. data/rbi/prism/node.rbi +44 -17
  44. data/rbi/prism/parse_result.rbi +17 -0
  45. data/rbi/prism/string_query.rbi +12 -0
  46. data/rbi/prism/translation/parser35.rbi +6 -0
  47. data/rbi/prism.rbi +39 -36
  48. data/sig/prism/dsl.rbs +6 -4
  49. data/sig/prism/node.rbs +29 -15
  50. data/sig/prism/parse_result.rbs +10 -0
  51. data/sig/prism/relocation.rbs +185 -0
  52. data/sig/prism/serialize.rbs +4 -2
  53. data/sig/prism/string_query.rbs +11 -0
  54. data/sig/prism.rbs +22 -1
  55. data/src/diagnostic.c +2 -2
  56. data/src/node.c +39 -0
  57. data/src/options.c +31 -0
  58. data/src/prettyprint.c +62 -0
  59. data/src/prism.c +738 -199
  60. data/src/regexp.c +7 -3
  61. data/src/serialize.c +18 -0
  62. data/src/static_literals.c +1 -1
  63. data/src/util/pm_buffer.c +40 -0
  64. data/src/util/pm_char.c +1 -1
  65. data/src/util/pm_constant_pool.c +6 -2
  66. data/src/util/pm_string.c +1 -0
  67. data/src/util/pm_strncasecmp.c +13 -1
  68. metadata +13 -7
data/ext/prism/extconf.rb CHANGED
@@ -70,26 +70,6 @@ if RUBY_ENGINE != "ruby"
70
70
  return
71
71
  end
72
72
 
73
- # We're going to need to run `make` using prism's `Makefile`.
74
- # We want to use the same toolchain (compiler, flags, etc) to compile libprism.a and
75
- # the C extension since they will be linked together.
76
- # The C extension uses RbConfig, which contains values from the toolchain that built the running Ruby.
77
- env = RbConfig::CONFIG.slice("SOEXT", "CPPFLAGS", "CFLAGS", "CC", "AR", "ARFLAGS", "MAKEDIRS", "RMALL")
78
-
79
- # It's possible that the Ruby that is being run wasn't actually compiled on this
80
- # machine, in which case parts of RbConfig might be incorrect. In this case
81
- # we'll need to do some additional checks and potentially fall back to defaults.
82
- if env.key?("CC") && !File.exist?(env["CC"])
83
- env.delete("CC")
84
- env.delete("CFLAGS")
85
- env.delete("CPPFLAGS")
86
- end
87
-
88
- if env.key?("AR") && !File.exist?(env["AR"])
89
- env.delete("AR")
90
- env.delete("ARFLAGS")
91
- end
92
-
93
73
  require "mkmf"
94
74
 
95
75
  # First, ensure that we can find the header for the prism library.
@@ -127,24 +107,21 @@ end
127
107
  # By default, all symbols are hidden in the shared library.
128
108
  append_cflags("-fvisibility=hidden")
129
109
 
130
- # We need to link against the libprism.a archive, which is built by the
131
- # project's `Makefile`. We'll build it if it doesn't exist yet, and then add it
132
- # to `mkmf`'s list of local libraries.
133
- archive_target = "build/libprism.a"
134
- archive_path = File.expand_path("../../#{archive_target}", __dir__)
110
+ def src_list(path)
111
+ srcdir = path.dup
112
+ RbConfig.expand(srcdir) # mutates srcdir :-/
113
+ Dir[File.join(srcdir, "*.{#{SRC_EXT.join(%q{,})}}")]
114
+ end
135
115
 
136
- make(env, archive_target) unless File.exist?(archive_path)
137
- $LOCAL_LIBS << " #{archive_path}"
116
+ def add_libprism_source(path)
117
+ $VPATH << path
118
+ src_list path
119
+ end
120
+
121
+ $srcs = src_list("$(srcdir)") +
122
+ add_libprism_source("$(srcdir)/../../src") +
123
+ add_libprism_source("$(srcdir)/../../src/util")
138
124
 
139
125
  # Finally, we'll create the `Makefile` that is going to be used to configure and
140
126
  # build the C extension.
141
127
  create_makefile("prism/prism")
142
-
143
- # Now that the `Makefile` for the C extension is built, we'll append on an extra
144
- # rule that dictates that the extension should be rebuilt if the archive is
145
- # updated.
146
- File.open("Makefile", "a") do |mf|
147
- mf.puts
148
- mf.puts("# Automatically rebuild the extension if libprism.a changed")
149
- mf.puts("$(TARGET_SO): $(LOCAL_LIBS)")
150
- end