ruby-lint 0.0.3 → 0.0.4

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 (347) hide show
  1. data.tar.gz.asc +14 -14
  2. data/.gitignore +1 -2
  3. data/.rubocop.yml +59 -0
  4. data/.travis.yml +3 -7
  5. data/.yardopts +2 -2
  6. data/Gemfile +4 -0
  7. data/MANIFEST +103 -67
  8. data/README.md +13 -31
  9. data/Rakefile +1 -6
  10. data/checksum/ruby-lint-0.0.3.gem.sha512 +1 -0
  11. data/debug/memory_usage.rb +14 -0
  12. data/debug/profile.rb +18 -0
  13. data/doc/architecture.md +14 -18
  14. data/doc/changelog.md +29 -0
  15. data/doc/code_analysis.md +12 -12
  16. data/doc/configuration.md +21 -50
  17. data/doc/graphviz/flow.dot +1 -1
  18. data/doc/images/flow.png +0 -0
  19. data/lib/ruby-lint.rb +33 -19
  20. data/lib/ruby-lint/analysis/argument_amount.rb +84 -0
  21. data/lib/ruby-lint/analysis/base.rb +132 -0
  22. data/lib/ruby-lint/analysis/confusing_variables.rb +26 -0
  23. data/lib/ruby-lint/analysis/pedantics.rb +36 -0
  24. data/lib/ruby-lint/analysis/shadowing_variables.rb +47 -0
  25. data/lib/ruby-lint/analysis/undefined_methods.rb +91 -0
  26. data/lib/ruby-lint/analysis/undefined_variables.rb +46 -0
  27. data/lib/ruby-lint/analysis/unused_variables.rb +49 -0
  28. data/lib/ruby-lint/ast/builder.rb +17 -0
  29. data/lib/ruby-lint/ast/node.rb +39 -0
  30. data/lib/ruby-lint/cli.rb +0 -19
  31. data/lib/ruby-lint/cli/analyze.rb +54 -28
  32. data/lib/ruby-lint/cli/ast.rb +21 -6
  33. data/lib/ruby-lint/cli/base.rb +0 -23
  34. data/lib/ruby-lint/configuration.rb +112 -42
  35. data/lib/ruby-lint/constant_loader.rb +10 -28
  36. data/lib/ruby-lint/default_names.rb +19 -0
  37. data/lib/ruby-lint/definition/constant_proxy.rb +56 -0
  38. data/lib/ruby-lint/definition/ruby_method.rb +21 -143
  39. data/lib/ruby-lint/definition/ruby_object.rb +142 -246
  40. data/lib/ruby-lint/definition_builder/base.rb +43 -0
  41. data/lib/ruby-lint/definition_builder/primitive.rb +39 -0
  42. data/lib/ruby-lint/definition_builder/ruby_array.rb +77 -0
  43. data/lib/ruby-lint/definition_builder/ruby_block.rb +34 -0
  44. data/lib/ruby-lint/definition_builder/ruby_class.rb +24 -0
  45. data/lib/ruby-lint/definition_builder/ruby_hash.rb +37 -0
  46. data/lib/ruby-lint/definition_builder/ruby_method.rb +84 -0
  47. data/lib/ruby-lint/definition_builder/ruby_module.rb +68 -0
  48. data/lib/ruby-lint/definition_generator.rb +41 -15
  49. data/lib/ruby-lint/definitions/core/arg0.rb +1 -1
  50. data/lib/ruby-lint/definitions/core/argf.rb +1 -1
  51. data/lib/ruby-lint/definitions/core/argument_error.rb +2 -2
  52. data/lib/ruby-lint/definitions/core/argv.rb +1 -1
  53. data/lib/ruby-lint/definitions/core/array.rb +6 -6
  54. data/lib/ruby-lint/definitions/core/autoload.rb +2 -2
  55. data/lib/ruby-lint/definitions/core/basic_object.rb +3 -3
  56. data/lib/ruby-lint/definitions/core/bignum.rb +2 -2
  57. data/lib/ruby-lint/definitions/core/binding.rb +2 -2
  58. data/lib/ruby-lint/definitions/core/class.rb +2 -2
  59. data/lib/ruby-lint/definitions/core/comparable.rb +1 -1
  60. data/lib/ruby-lint/definitions/core/complex.rb +4 -4
  61. data/lib/ruby-lint/definitions/core/condition_variable.rb +2 -2
  62. data/lib/ruby-lint/definitions/core/continuation.rb +2 -2
  63. data/lib/ruby-lint/definitions/core/data.rb +2 -2
  64. data/lib/ruby-lint/definitions/core/date.rb +34 -34
  65. data/lib/ruby-lint/definitions/core/date_time.rb +26 -26
  66. data/lib/ruby-lint/definitions/core/default_record_separator.rb +1 -1
  67. data/lib/ruby-lint/definitions/core/digest.rb +14 -14
  68. data/lib/ruby-lint/definitions/core/dir.rb +34 -34
  69. data/lib/ruby-lint/definitions/core/encoding.rb +237 -237
  70. data/lib/ruby-lint/definitions/core/encoding_error.rb +2 -2
  71. data/lib/ruby-lint/definitions/core/enumerable.rb +15 -15
  72. data/lib/ruby-lint/definitions/core/enumerator.rb +2 -2
  73. data/lib/ruby-lint/definitions/core/env.rb +1 -1
  74. data/lib/ruby-lint/definitions/core/eoferror.rb +2 -2
  75. data/lib/ruby-lint/definitions/core/erb.rb +22 -22
  76. data/lib/ruby-lint/definitions/core/errno.rb +525 -525
  77. data/lib/ruby-lint/definitions/core/etc.rb +6 -6
  78. data/lib/ruby-lint/definitions/core/exception.rb +2 -2
  79. data/lib/ruby-lint/definitions/core/false.rb +1 -1
  80. data/lib/ruby-lint/definitions/core/false_class.rb +2 -2
  81. data/lib/ruby-lint/definitions/core/fatal_error.rb +2 -2
  82. data/lib/ruby-lint/definitions/core/fiber.rb +2 -2
  83. data/lib/ruby-lint/definitions/core/fiber_error.rb +2 -2
  84. data/lib/ruby-lint/definitions/core/file.rb +68 -68
  85. data/lib/ruby-lint/definitions/core/file_list.rb +2 -2
  86. data/lib/ruby-lint/definitions/core/file_test.rb +1 -1
  87. data/lib/ruby-lint/definitions/core/file_utils.rb +16 -16
  88. data/lib/ruby-lint/definitions/core/fixnum.rb +4 -4
  89. data/lib/ruby-lint/definitions/core/float.rb +16 -16
  90. data/lib/ruby-lint/definitions/core/float_domain_error.rb +2 -2
  91. data/lib/ruby-lint/definitions/core/gc.rb +2 -2
  92. data/lib/ruby-lint/definitions/core/gem.rb +119 -119
  93. data/lib/ruby-lint/definitions/core/hash.rb +14 -14
  94. data/lib/ruby-lint/definitions/core/immediate_value.rb +1 -1
  95. data/lib/ruby-lint/definitions/core/index_error.rb +2 -2
  96. data/lib/ruby-lint/definitions/core/integer.rb +2 -2
  97. data/lib/ruby-lint/definitions/core/interrupt.rb +2 -2
  98. data/lib/ruby-lint/definitions/core/io.rb +38 -38
  99. data/lib/ruby-lint/definitions/core/ioerror.rb +2 -2
  100. data/lib/ruby-lint/definitions/core/kernel.rb +3 -3
  101. data/lib/ruby-lint/definitions/core/key_error.rb +2 -2
  102. data/lib/ruby-lint/definitions/core/load_error.rb +6 -6
  103. data/lib/ruby-lint/definitions/core/local_jump_error.rb +2 -2
  104. data/lib/ruby-lint/definitions/core/main.rb +1 -1
  105. data/lib/ruby-lint/definitions/core/marshal.rb +35 -35
  106. data/lib/ruby-lint/definitions/core/match_data.rb +2 -2
  107. data/lib/ruby-lint/definitions/core/math.rb +7 -7
  108. data/lib/ruby-lint/definitions/core/memory_segmention_error.rb +2 -2
  109. data/lib/ruby-lint/definitions/core/method.rb +2 -2
  110. data/lib/ruby-lint/definitions/core/module.rb +1 -1
  111. data/lib/ruby-lint/definitions/core/monitor.rb +4 -4
  112. data/lib/ruby-lint/definitions/core/monitor_mixin.rb +5 -5
  113. data/lib/ruby-lint/definitions/core/mutex.rb +2 -2
  114. data/lib/ruby-lint/definitions/core/name_error.rb +2 -2
  115. data/lib/ruby-lint/definitions/core/nil.rb +1 -1
  116. data/lib/ruby-lint/definitions/core/nil_class.rb +2 -2
  117. data/lib/ruby-lint/definitions/core/no_memory_error.rb +2 -2
  118. data/lib/ruby-lint/definitions/core/no_method_error.rb +2 -2
  119. data/lib/ruby-lint/definitions/core/not_implemented_error.rb +2 -2
  120. data/lib/ruby-lint/definitions/core/numeric.rb +2 -2
  121. data/lib/ruby-lint/definitions/core/object.rb +2 -2
  122. data/lib/ruby-lint/definitions/core/object_space.rb +1 -1
  123. data/lib/ruby-lint/definitions/core/open_struct.rb +3 -3
  124. data/lib/ruby-lint/definitions/core/option_parser.rb +83 -83
  125. data/lib/ruby-lint/definitions/core/precision.rb +1 -1
  126. data/lib/ruby-lint/definitions/core/primitive_failure.rb +2 -2
  127. data/lib/ruby-lint/definitions/core/proc.rb +2 -2
  128. data/lib/ruby-lint/definitions/core/process.rb +29 -29
  129. data/lib/ruby-lint/definitions/core/psych.rb +149 -149
  130. data/lib/ruby-lint/definitions/core/queue.rb +2 -2
  131. data/lib/ruby-lint/definitions/core/rake.rb +117 -117
  132. data/lib/ruby-lint/definitions/core/rake_file_utils.rb +1 -1
  133. data/lib/ruby-lint/definitions/core/rakeversion.rb +1 -1
  134. data/lib/ruby-lint/definitions/core/random.rb +2 -2
  135. data/lib/ruby-lint/definitions/core/range.rb +4 -4
  136. data/lib/ruby-lint/definitions/core/range_error.rb +2 -2
  137. data/lib/ruby-lint/definitions/core/rational.rb +2 -2
  138. data/lib/ruby-lint/definitions/core/rb_config.rb +3 -3
  139. data/lib/ruby-lint/definitions/core/regexp.rb +28 -28
  140. data/lib/ruby-lint/definitions/core/regexp_error.rb +2 -2
  141. data/lib/ruby-lint/definitions/core/rubinius.rb +1057 -1057
  142. data/lib/ruby-lint/definitions/core/ruby_copyright.rb +1 -1
  143. data/lib/ruby-lint/definitions/core/ruby_description.rb +1 -1
  144. data/lib/ruby-lint/definitions/core/ruby_engine.rb +1 -1
  145. data/lib/ruby-lint/definitions/core/ruby_lint.rb +9 -9
  146. data/lib/ruby-lint/definitions/core/ruby_patchlevel.rb +1 -1
  147. data/lib/ruby-lint/definitions/core/ruby_platform.rb +1 -1
  148. data/lib/ruby-lint/definitions/core/ruby_release_date.rb +1 -1
  149. data/lib/ruby-lint/definitions/core/ruby_version.rb +1 -1
  150. data/lib/ruby-lint/definitions/core/runtime_error.rb +2 -2
  151. data/lib/ruby-lint/definitions/core/scan_error.rb +2 -2
  152. data/lib/ruby-lint/definitions/core/script_error.rb +2 -2
  153. data/lib/ruby-lint/definitions/core/security_error.rb +2 -2
  154. data/lib/ruby-lint/definitions/core/shellwords.rb +1 -1
  155. data/lib/ruby-lint/definitions/core/signal.rb +3 -3
  156. data/lib/ruby-lint/definitions/core/signal_exception.rb +2 -2
  157. data/lib/ruby-lint/definitions/core/singleton.rb +2 -2
  158. data/lib/ruby-lint/definitions/core/sized_queue.rb +2 -2
  159. data/lib/ruby-lint/definitions/core/standard_error.rb +2 -2
  160. data/lib/ruby-lint/definitions/core/stderr.rb +1 -1
  161. data/lib/ruby-lint/definitions/core/stdin.rb +1 -1
  162. data/lib/ruby-lint/definitions/core/stdout.rb +1 -1
  163. data/lib/ruby-lint/definitions/core/stop_iteration.rb +2 -2
  164. data/lib/ruby-lint/definitions/core/string.rb +21 -21
  165. data/lib/ruby-lint/definitions/core/string_io.rb +7 -7
  166. data/lib/ruby-lint/definitions/core/string_scanner.rb +4 -4
  167. data/lib/ruby-lint/definitions/core/struct.rb +20 -20
  168. data/lib/ruby-lint/definitions/core/syck.rb +4 -4
  169. data/lib/ruby-lint/definitions/core/symbol.rb +2 -2
  170. data/lib/ruby-lint/definitions/core/syntax_error.rb +2 -2
  171. data/lib/ruby-lint/definitions/core/system_call_error.rb +2 -2
  172. data/lib/ruby-lint/definitions/core/system_exit.rb +2 -2
  173. data/lib/ruby-lint/definitions/core/system_stack_error.rb +2 -2
  174. data/lib/ruby-lint/definitions/core/thread.rb +6 -6
  175. data/lib/ruby-lint/definitions/core/thread_error.rb +2 -2
  176. data/lib/ruby-lint/definitions/core/thread_group.rb +2 -2
  177. data/lib/ruby-lint/definitions/core/time.rb +3 -3
  178. data/lib/ruby-lint/definitions/core/toplevel_binding.rb +1 -1
  179. data/lib/ruby-lint/definitions/core/true.rb +1 -1
  180. data/lib/ruby-lint/definitions/core/true_class.rb +2 -2
  181. data/lib/ruby-lint/definitions/core/type_error.rb +2 -2
  182. data/lib/ruby-lint/definitions/core/unbound_method.rb +2 -2
  183. data/lib/ruby-lint/definitions/core/unmarshalable.rb +1 -1
  184. data/lib/ruby-lint/definitions/core/unsupported_library_error.rb +2 -2
  185. data/lib/ruby-lint/definitions/core/weak_ref.rb +4 -4
  186. data/lib/ruby-lint/definitions/core/zero_division_error.rb +2 -2
  187. data/lib/ruby-lint/definitions/rails.rb +12 -0
  188. data/lib/ruby-lint/definitions/rails/abstract_controller.rb +335 -0
  189. data/lib/ruby-lint/definitions/rails/action_controller.rb +1244 -0
  190. data/lib/ruby-lint/definitions/rails/action_dispatch.rb +741 -0
  191. data/lib/ruby-lint/definitions/rails/action_mailer.rb +502 -0
  192. data/lib/ruby-lint/definitions/rails/action_pack.rb +16 -0
  193. data/lib/ruby-lint/definitions/rails/action_view.rb +898 -0
  194. data/lib/ruby-lint/definitions/rails/active_model.rb +437 -0
  195. data/lib/ruby-lint/definitions/rails/active_record.rb +2901 -0
  196. data/lib/ruby-lint/definitions/rails/active_support.rb +1963 -0
  197. data/lib/ruby-lint/definitions/rails/arel.rb +665 -0
  198. data/lib/ruby-lint/definitions/rails/rails.rb +452 -0
  199. data/lib/ruby-lint/definitions/rails/sprockets.rb +968 -0
  200. data/lib/ruby-lint/generated_constant.rb +33 -0
  201. data/lib/ruby-lint/helper/constant_paths.rb +30 -21
  202. data/lib/ruby-lint/inspector.rb +20 -2
  203. data/lib/ruby-lint/iterator.rb +11 -171
  204. data/lib/ruby-lint/nested_stack.rb +46 -0
  205. data/lib/ruby-lint/parser.rb +24 -806
  206. data/lib/ruby-lint/report.rb +2 -30
  207. data/lib/ruby-lint/report/entry.rb +2 -2
  208. data/lib/ruby-lint/runner.rb +81 -0
  209. data/lib/ruby-lint/template/definition.erb +12 -8
  210. data/lib/ruby-lint/variable_predicates.rb +16 -58
  211. data/lib/ruby-lint/version.rb +1 -1
  212. data/lib/ruby-lint/virtual_machine.rb +1044 -0
  213. data/ruby-lint.gemspec +17 -7
  214. data/spec/fixtures/complex/rails/basic_controller.rb +9 -0
  215. data/spec/fixtures/complex/rcap.rb +38 -0
  216. data/spec/fixtures/complex/slop.rb +680 -0
  217. data/spec/fixtures/config.yml +8 -0
  218. data/spec/fixtures/invalid.rb +3 -0
  219. data/spec/fixtures/invalid_2.rb +3 -0
  220. data/spec/fixtures/syntax_error.rb +1 -0
  221. data/spec/fixtures/valid.rb +3 -0
  222. data/spec/helper.rb +6 -0
  223. data/spec/ruby-lint/{analyze → analysis}/argument_amount.rb +7 -7
  224. data/spec/ruby-lint/analysis/confusing_variables.rb +46 -0
  225. data/spec/ruby-lint/analysis/pedantics.rb +43 -0
  226. data/spec/ruby-lint/{analyze → analysis}/shadowing_variables.rb +5 -5
  227. data/spec/ruby-lint/{analyze → analysis}/undefined_methods.rb +18 -18
  228. data/spec/ruby-lint/{analyze → analysis}/undefined_variables.rb +19 -25
  229. data/spec/ruby-lint/{analyze → analysis}/unused_variables.rb +29 -16
  230. data/spec/ruby-lint/ast/node.rb +33 -0
  231. data/spec/ruby-lint/cli/analyze.rb +31 -0
  232. data/spec/ruby-lint/cli/ast.rb +23 -0
  233. data/spec/ruby-lint/configuration.rb +45 -6
  234. data/spec/ruby-lint/definition/constant_proxy.rb +31 -0
  235. data/spec/ruby-lint/definition/dsl.rb +13 -20
  236. data/spec/ruby-lint/definition/ruby_method.rb +65 -148
  237. data/spec/ruby-lint/definition/ruby_object.rb +60 -96
  238. data/spec/ruby-lint/definition_builder/primitive.rb +62 -0
  239. data/spec/ruby-lint/definition_builder/ruby_class.rb +108 -0
  240. data/spec/ruby-lint/definition_builder/ruby_method.rb +53 -0
  241. data/spec/ruby-lint/definition_builder/ruby_module.rb +50 -0
  242. data/spec/ruby-lint/iterator.rb +40 -16
  243. data/spec/ruby-lint/nested_stack.rb +23 -0
  244. data/spec/ruby-lint/parser.rb +14 -0
  245. data/spec/ruby-lint/report.rb +0 -10
  246. data/spec/ruby-lint/report/entry.rb +8 -4
  247. data/spec/ruby-lint/runner.rb +32 -0
  248. data/spec/ruby-lint/virtual_machine/assignments/arrays.rb +87 -0
  249. data/spec/ruby-lint/virtual_machine/assignments/hashes.rb +52 -0
  250. data/spec/ruby-lint/virtual_machine/assignments/optional.rb +41 -0
  251. data/spec/ruby-lint/{definitions_builder → virtual_machine}/assignments/return_values.rb +11 -11
  252. data/spec/ruby-lint/virtual_machine/assignments/variables.rb +85 -0
  253. data/spec/ruby-lint/virtual_machine/associate_nodes.rb +17 -0
  254. data/spec/ruby-lint/virtual_machine/autoloading.rb +31 -0
  255. data/spec/ruby-lint/virtual_machine/blocks.rb +64 -0
  256. data/spec/ruby-lint/virtual_machine/classes/class_methods.rb +21 -0
  257. data/spec/ruby-lint/virtual_machine/classes/extending.rb +104 -0
  258. data/spec/ruby-lint/virtual_machine/classes/redefining.rb +24 -0
  259. data/spec/ruby-lint/virtual_machine/classes/sclass.rb +94 -0
  260. data/spec/ruby-lint/virtual_machine/classes/scoping.rb +60 -0
  261. data/spec/ruby-lint/virtual_machine/complex/rails.rb +18 -0
  262. data/spec/ruby-lint/virtual_machine/complex/rcap.rb +15 -0
  263. data/spec/ruby-lint/virtual_machine/complex/slop.rb +16 -0
  264. data/spec/ruby-lint/{definitions_builder → virtual_machine}/for.rb +2 -2
  265. data/spec/ruby-lint/virtual_machine/freeze.rb +13 -0
  266. data/spec/ruby-lint/virtual_machine/interpolation.rb +12 -0
  267. data/spec/ruby-lint/virtual_machine/methods/defining.rb +40 -0
  268. data/spec/ruby-lint/virtual_machine/methods/exporting.rb +19 -0
  269. data/spec/ruby-lint/virtual_machine/methods/parameters.rb +77 -0
  270. data/spec/ruby-lint/virtual_machine/methods/patching.rb +26 -0
  271. data/spec/ruby-lint/virtual_machine/methods/scoping.rb +63 -0
  272. data/spec/ruby-lint/virtual_machine/methods/visibility.rb +64 -0
  273. data/spec/ruby-lint/{definitions_builder → virtual_machine}/modules.rb +16 -16
  274. data/spec/ruby-lint/virtual_machine/reference_amount.rb +33 -0
  275. data/spec/ruby-lint/virtual_machine/unused.rb +17 -0
  276. data/spec/support/bacon.rb +13 -13
  277. data/spec/support/building.rb +23 -16
  278. data/spec/support/coveralls.rb +5 -0
  279. data/spec/support/fixtures.rb +20 -0
  280. data/spec/support/parsing.rb +3 -5
  281. data/spec/support/simplecov.rb +5 -3
  282. data/task/build.rake +1 -1
  283. data/task/cop.rake +11 -0
  284. data/task/generate.rake +40 -2
  285. data/task/profile.rake +27 -0
  286. data/task/todo.rake +6 -0
  287. data/task/travis.rake +7 -0
  288. metadata +160 -75
  289. metadata.gz.asc +14 -14
  290. data/doc/build/.gitkeep +0 -0
  291. data/lib/ruby-lint/analyze/argument_amount.rb +0 -73
  292. data/lib/ruby-lint/analyze/shadowing_variables.rb +0 -32
  293. data/lib/ruby-lint/analyze/undefined_methods.rb +0 -68
  294. data/lib/ruby-lint/analyze/undefined_variables.rb +0 -72
  295. data/lib/ruby-lint/analyze/unused_variables.rb +0 -48
  296. data/lib/ruby-lint/base.rb +0 -85
  297. data/lib/ruby-lint/definitions_builder.rb +0 -692
  298. data/lib/ruby-lint/helper/conversion.rb +0 -33
  299. data/lib/ruby-lint/helper/current_scope.rb +0 -98
  300. data/lib/ruby-lint/helper/methods.rb +0 -91
  301. data/lib/ruby-lint/node.rb +0 -107
  302. data/lib/ruby-lint/parser_error.rb +0 -30
  303. data/spec/ruby-lint/constant_loader.rb +0 -32
  304. data/spec/ruby-lint/definition/method_calls.rb +0 -26
  305. data/spec/ruby-lint/definitions_builder/assignments/arrays.rb +0 -71
  306. data/spec/ruby-lint/definitions_builder/assignments/hashes.rb +0 -65
  307. data/spec/ruby-lint/definitions_builder/assignments/objects.rb +0 -23
  308. data/spec/ruby-lint/definitions_builder/assignments/optional.rb +0 -22
  309. data/spec/ruby-lint/definitions_builder/assignments/variables.rb +0 -71
  310. data/spec/ruby-lint/definitions_builder/associate_nodes.rb +0 -17
  311. data/spec/ruby-lint/definitions_builder/blocks.rb +0 -40
  312. data/spec/ruby-lint/definitions_builder/classes.rb +0 -230
  313. data/spec/ruby-lint/definitions_builder/methods.rb +0 -147
  314. data/spec/ruby-lint/definitions_builder/reference_amount.rb +0 -31
  315. data/spec/ruby-lint/definitions_builder/unused.rb +0 -15
  316. data/spec/ruby-lint/node.rb +0 -38
  317. data/spec/ruby-lint/parser/assignments.rb +0 -225
  318. data/spec/ruby-lint/parser/classes.rb +0 -110
  319. data/spec/ruby-lint/parser/errors.rb +0 -12
  320. data/spec/ruby-lint/parser/metadata.rb +0 -17
  321. data/spec/ruby-lint/parser/method_definitions.rb +0 -111
  322. data/spec/ruby-lint/parser/methods.rb +0 -217
  323. data/spec/ruby-lint/parser/modules.rb +0 -70
  324. data/spec/ruby-lint/parser/operators.rb +0 -40
  325. data/spec/ruby-lint/parser/statements/begin.rb +0 -55
  326. data/spec/ruby-lint/parser/statements/case.rb +0 -34
  327. data/spec/ruby-lint/parser/statements/defined.rb +0 -11
  328. data/spec/ruby-lint/parser/statements/for.rb +0 -34
  329. data/spec/ruby-lint/parser/statements/if.rb +0 -46
  330. data/spec/ruby-lint/parser/statements/return.rb +0 -14
  331. data/spec/ruby-lint/parser/statements/super.rb +0 -49
  332. data/spec/ruby-lint/parser/statements/unless.rb +0 -42
  333. data/spec/ruby-lint/parser/statements/until.rb +0 -25
  334. data/spec/ruby-lint/parser/statements/while.rb +0 -25
  335. data/spec/ruby-lint/parser/statements/yield.rb +0 -18
  336. data/spec/ruby-lint/parser/types/arrays.rb +0 -47
  337. data/spec/ruby-lint/parser/types/booleans.rb +0 -11
  338. data/spec/ruby-lint/parser/types/constants.rb +0 -32
  339. data/spec/ruby-lint/parser/types/hashes.rb +0 -55
  340. data/spec/ruby-lint/parser/types/nil.rb +0 -7
  341. data/spec/ruby-lint/parser/types/numbers.rb +0 -11
  342. data/spec/ruby-lint/parser/types/procs.rb +0 -11
  343. data/spec/ruby-lint/parser/types/ranges.rb +0 -11
  344. data/spec/ruby-lint/parser/types/regexp.rb +0 -27
  345. data/spec/ruby-lint/parser/types/strings.rb +0 -44
  346. data/spec/ruby-lint/parser/types/symbols.rb +0 -15
  347. data/task/stdlib.rake +0 -23
@@ -3,6 +3,6 @@
3
3
  # Created: 2013-04-01 18:33:53 +0200
4
4
  # Platform: rbx 2.0.0.rc1
5
5
  #
6
- RubyLint.global_scope.define_constant('EncodingError') do |klass|
7
- klass.inherits(RubyLint.global_constant('StandardError'))
6
+ RubyLint::VirtualMachine.global_scope.define_constant('EncodingError') do |klass|
7
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('StandardError'))
8
8
  end
@@ -3,7 +3,7 @@
3
3
  # Created: 2013-04-01 18:33:53 +0200
4
4
  # Platform: rbx 2.0.0.rc1
5
5
  #
6
- RubyLint.global_scope.define_constant('Enumerable') do |klass|
6
+ RubyLint::VirtualMachine.global_scope.define_constant('Enumerable') do |klass|
7
7
 
8
8
  klass.define_method('__module_init__')
9
9
 
@@ -177,8 +177,8 @@ end
177
177
  # Created: 2013-04-01 18:33:53 +0200
178
178
  # Platform: rbx 2.0.0.rc1
179
179
  #
180
- RubyLint.global_scope.define_constant('Enumerable::Enumerator') do |klass|
181
- klass.inherits(RubyLint.global_constant('Object'))
180
+ RubyLint::VirtualMachine.global_scope.define_constant('Enumerable::Enumerator') do |klass|
181
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('Object'))
182
182
 
183
183
  klass.define_method('__class_init__')
184
184
 
@@ -215,8 +215,8 @@ end
215
215
  # Created: 2013-04-01 18:33:53 +0200
216
216
  # Platform: rbx 2.0.0.rc1
217
217
  #
218
- RubyLint.global_scope.define_constant('Enumerable::Enumerator::FiberGenerator') do |klass|
219
- klass.inherits(RubyLint.global_constant('Object'))
218
+ RubyLint::VirtualMachine.global_scope.define_constant('Enumerable::Enumerator::FiberGenerator') do |klass|
219
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('Object'))
220
220
 
221
221
  klass.define_method('__class_init__')
222
222
 
@@ -238,8 +238,8 @@ end
238
238
  # Created: 2013-04-01 18:33:53 +0200
239
239
  # Platform: rbx 2.0.0.rc1
240
240
  #
241
- RubyLint.global_scope.define_constant('Enumerable::Enumerator::Generator') do |klass|
242
- klass.inherits(RubyLint.global_constant('Object'))
241
+ RubyLint::VirtualMachine.global_scope.define_constant('Enumerable::Enumerator::Generator') do |klass|
242
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('Object'))
243
243
 
244
244
  klass.define_method('__class_init__')
245
245
 
@@ -255,8 +255,8 @@ end
255
255
  # Created: 2013-04-01 18:33:53 +0200
256
256
  # Platform: rbx 2.0.0.rc1
257
257
  #
258
- RubyLint.global_scope.define_constant('Enumerable::Enumerator::SortedElement') do |klass|
259
- klass.inherits(RubyLint.global_constant('Object'))
258
+ RubyLint::VirtualMachine.global_scope.define_constant('Enumerable::Enumerator::SortedElement') do |klass|
259
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('Object'))
260
260
 
261
261
  klass.define_method('__class_init__')
262
262
 
@@ -279,8 +279,8 @@ end
279
279
  # Created: 2013-04-01 18:33:53 +0200
280
280
  # Platform: rbx 2.0.0.rc1
281
281
  #
282
- RubyLint.global_scope.define_constant('Enumerable::Enumerator::ThreadGenerator') do |klass|
283
- klass.inherits(RubyLint.global_constant('Object'))
282
+ RubyLint::VirtualMachine.global_scope.define_constant('Enumerable::Enumerator::ThreadGenerator') do |klass|
283
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('Object'))
284
284
 
285
285
  klass.define_method('__class_init__')
286
286
 
@@ -309,8 +309,8 @@ end
309
309
  # Created: 2013-04-01 18:33:53 +0200
310
310
  # Platform: rbx 2.0.0.rc1
311
311
  #
312
- RubyLint.global_scope.define_constant('Enumerable::Enumerator::Yielder') do |klass|
313
- klass.inherits(RubyLint.global_constant('Object'))
312
+ RubyLint::VirtualMachine.global_scope.define_constant('Enumerable::Enumerator::Yielder') do |klass|
313
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('Object'))
314
314
 
315
315
  klass.define_method('__class_init__')
316
316
 
@@ -332,8 +332,8 @@ end
332
332
  # Created: 2013-04-01 18:33:53 +0200
333
333
  # Platform: rbx 2.0.0.rc1
334
334
  #
335
- RubyLint.global_scope.define_constant('Enumerable::SortedElement') do |klass|
336
- klass.inherits(RubyLint.global_constant('Object'))
335
+ RubyLint::VirtualMachine.global_scope.define_constant('Enumerable::SortedElement') do |klass|
336
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('Object'))
337
337
 
338
338
  klass.define_method('__class_init__')
339
339
 
@@ -3,8 +3,8 @@
3
3
  # Created: 2013-04-01 18:33:53 +0200
4
4
  # Platform: rbx 2.0.0.rc1
5
5
  #
6
- RubyLint.global_scope.define_constant('Enumerator') do |klass|
7
- klass.inherits(RubyLint.global_constant('Object'))
6
+ RubyLint::VirtualMachine.global_scope.define_constant('Enumerator') do |klass|
7
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('Object'))
8
8
 
9
9
  klass.define_method('__class_init__')
10
10
 
@@ -3,5 +3,5 @@
3
3
  # Created: 2013-04-01 18:33:53 +0200
4
4
  # Platform: rbx 2.0.0.rc1
5
5
  #
6
- RubyLint.global_scope.define_constant('ENV') do |klass|
6
+ RubyLint::VirtualMachine.global_scope.define_constant('ENV') do |klass|
7
7
  end
@@ -3,6 +3,6 @@
3
3
  # Created: 2013-04-01 18:33:53 +0200
4
4
  # Platform: rbx 2.0.0.rc1
5
5
  #
6
- RubyLint.global_scope.define_constant('EOFError') do |klass|
7
- klass.inherits(RubyLint.global_constant('IOError'))
6
+ RubyLint::VirtualMachine.global_scope.define_constant('EOFError') do |klass|
7
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('IOError'))
8
8
  end
@@ -3,8 +3,8 @@
3
3
  # Created: 2013-04-01 18:33:53 +0200
4
4
  # Platform: rbx 2.0.0.rc1
5
5
  #
6
- RubyLint.global_scope.define_constant('ERB') do |klass|
7
- klass.inherits(RubyLint.global_constant('Object'))
6
+ RubyLint::VirtualMachine.global_scope.define_constant('ERB') do |klass|
7
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('Object'))
8
8
 
9
9
  klass.define_method('__class_init__')
10
10
 
@@ -50,8 +50,8 @@ end
50
50
  # Created: 2013-04-01 18:33:53 +0200
51
51
  # Platform: rbx 2.0.0.rc1
52
52
  #
53
- RubyLint.global_scope.define_constant('ERB::Compiler') do |klass|
54
- klass.inherits(RubyLint.global_constant('Object'))
53
+ RubyLint::VirtualMachine.global_scope.define_constant('ERB::Compiler') do |klass|
54
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('Object'))
55
55
 
56
56
  klass.define_method('__class_init__')
57
57
 
@@ -97,8 +97,8 @@ end
97
97
  # Created: 2013-04-01 18:33:53 +0200
98
98
  # Platform: rbx 2.0.0.rc1
99
99
  #
100
- RubyLint.global_scope.define_constant('ERB::Compiler::Buffer') do |klass|
101
- klass.inherits(RubyLint.global_constant('Object'))
100
+ RubyLint::VirtualMachine.global_scope.define_constant('ERB::Compiler::Buffer') do |klass|
101
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('Object'))
102
102
 
103
103
  klass.define_method('__class_init__')
104
104
 
@@ -118,8 +118,8 @@ end
118
118
  # Created: 2013-04-01 18:33:53 +0200
119
119
  # Platform: rbx 2.0.0.rc1
120
120
  #
121
- RubyLint.global_scope.define_constant('ERB::Compiler::ExplicitScanner') do |klass|
122
- klass.inherits(RubyLint.global_constant('ERB::Compiler::Scanner'))
121
+ RubyLint::VirtualMachine.global_scope.define_constant('ERB::Compiler::ExplicitScanner') do |klass|
122
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('ERB::Compiler::Scanner'))
123
123
 
124
124
  klass.define_method('__class_init__')
125
125
 
@@ -131,8 +131,8 @@ end
131
131
  # Created: 2013-04-01 18:33:53 +0200
132
132
  # Platform: rbx 2.0.0.rc1
133
133
  #
134
- RubyLint.global_scope.define_constant('ERB::Compiler::PercentLine') do |klass|
135
- klass.inherits(RubyLint.global_constant('Object'))
134
+ RubyLint::VirtualMachine.global_scope.define_constant('ERB::Compiler::PercentLine') do |klass|
135
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('Object'))
136
136
 
137
137
  klass.define_method('__class_init__')
138
138
 
@@ -148,8 +148,8 @@ end
148
148
  # Created: 2013-04-01 18:33:53 +0200
149
149
  # Platform: rbx 2.0.0.rc1
150
150
  #
151
- RubyLint.global_scope.define_constant('ERB::Compiler::Scanner') do |klass|
152
- klass.inherits(RubyLint.global_constant('Object'))
151
+ RubyLint::VirtualMachine.global_scope.define_constant('ERB::Compiler::Scanner') do |klass|
152
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('Object'))
153
153
 
154
154
  klass.define_method('__class_init__')
155
155
 
@@ -181,8 +181,8 @@ end
181
181
  # Created: 2013-04-01 18:33:53 +0200
182
182
  # Platform: rbx 2.0.0.rc1
183
183
  #
184
- RubyLint.global_scope.define_constant('ERB::Compiler::SimpleScanner') do |klass|
185
- klass.inherits(RubyLint.global_constant('ERB::Compiler::Scanner'))
184
+ RubyLint::VirtualMachine.global_scope.define_constant('ERB::Compiler::SimpleScanner') do |klass|
185
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('ERB::Compiler::Scanner'))
186
186
 
187
187
  klass.define_method('__class_init__')
188
188
 
@@ -194,8 +194,8 @@ end
194
194
  # Created: 2013-04-01 18:33:53 +0200
195
195
  # Platform: rbx 2.0.0.rc1
196
196
  #
197
- RubyLint.global_scope.define_constant('ERB::Compiler::SimpleScanner2') do |klass|
198
- klass.inherits(RubyLint.global_constant('ERB::Compiler::Scanner'))
197
+ RubyLint::VirtualMachine.global_scope.define_constant('ERB::Compiler::SimpleScanner2') do |klass|
198
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('ERB::Compiler::Scanner'))
199
199
 
200
200
  klass.define_method('__class_init__')
201
201
 
@@ -207,8 +207,8 @@ end
207
207
  # Created: 2013-04-01 18:33:53 +0200
208
208
  # Platform: rbx 2.0.0.rc1
209
209
  #
210
- RubyLint.global_scope.define_constant('ERB::Compiler::TrimScanner') do |klass|
211
- klass.inherits(RubyLint.global_constant('ERB::Compiler::Scanner'))
210
+ RubyLint::VirtualMachine.global_scope.define_constant('ERB::Compiler::TrimScanner') do |klass|
211
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('ERB::Compiler::Scanner'))
212
212
 
213
213
  klass.define_method('__class_init__')
214
214
 
@@ -251,7 +251,7 @@ end
251
251
  # Created: 2013-04-01 18:33:53 +0200
252
252
  # Platform: rbx 2.0.0.rc1
253
253
  #
254
- RubyLint.global_scope.define_constant('ERB::Compiler::TrimScanner::ERB_STAG') do |klass|
254
+ RubyLint::VirtualMachine.global_scope.define_constant('ERB::Compiler::TrimScanner::ERB_STAG') do |klass|
255
255
  end
256
256
 
257
257
  ##
@@ -259,7 +259,7 @@ end
259
259
  # Created: 2013-04-01 18:33:53 +0200
260
260
  # Platform: rbx 2.0.0.rc1
261
261
  #
262
- RubyLint.global_scope.define_constant('ERB::DefMethod') do |klass|
262
+ RubyLint::VirtualMachine.global_scope.define_constant('ERB::DefMethod') do |klass|
263
263
 
264
264
  klass.define_method('__module_init__')
265
265
 
@@ -274,7 +274,7 @@ end
274
274
  # Created: 2013-04-01 18:33:53 +0200
275
275
  # Platform: rbx 2.0.0.rc1
276
276
  #
277
- RubyLint.global_scope.define_constant('ERB::Revision') do |klass|
277
+ RubyLint::VirtualMachine.global_scope.define_constant('ERB::Revision') do |klass|
278
278
  end
279
279
 
280
280
  ##
@@ -282,7 +282,7 @@ end
282
282
  # Created: 2013-04-01 18:33:53 +0200
283
283
  # Platform: rbx 2.0.0.rc1
284
284
  #
285
- RubyLint.global_scope.define_constant('ERB::Util') do |klass|
285
+ RubyLint::VirtualMachine.global_scope.define_constant('ERB::Util') do |klass|
286
286
 
287
287
  klass.define_method('__module_init__')
288
288
 
@@ -3,7 +3,7 @@
3
3
  # Created: 2013-04-01 18:33:53 +0200
4
4
  # Platform: rbx 2.0.0.rc1
5
5
  #
6
- RubyLint.global_scope.define_constant('Errno') do |klass|
6
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno') do |klass|
7
7
 
8
8
  klass.define_method('__module_init__')
9
9
 
@@ -17,8 +17,8 @@ end
17
17
  # Created: 2013-04-01 18:33:53 +0200
18
18
  # Platform: rbx 2.0.0.rc1
19
19
  #
20
- RubyLint.global_scope.define_constant('Errno::E2BIG') do |klass|
21
- klass.inherits(RubyLint.global_constant('SystemCallError'))
20
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::E2BIG') do |klass|
21
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
22
22
  end
23
23
 
24
24
  ##
@@ -26,7 +26,7 @@ end
26
26
  # Created: 2013-04-01 18:33:53 +0200
27
27
  # Platform: rbx 2.0.0.rc1
28
28
  #
29
- RubyLint.global_scope.define_constant('Errno::E2BIG::Errno') do |klass|
29
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::E2BIG::Errno') do |klass|
30
30
  end
31
31
 
32
32
  ##
@@ -34,7 +34,7 @@ end
34
34
  # Created: 2013-04-01 18:33:53 +0200
35
35
  # Platform: rbx 2.0.0.rc1
36
36
  #
37
- RubyLint.global_scope.define_constant('Errno::E2BIG::Strerror') do |klass|
37
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::E2BIG::Strerror') do |klass|
38
38
  end
39
39
 
40
40
  ##
@@ -42,8 +42,8 @@ end
42
42
  # Created: 2013-04-01 18:33:53 +0200
43
43
  # Platform: rbx 2.0.0.rc1
44
44
  #
45
- RubyLint.global_scope.define_constant('Errno::EACCES') do |klass|
46
- klass.inherits(RubyLint.global_constant('SystemCallError'))
45
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EACCES') do |klass|
46
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
47
47
  end
48
48
 
49
49
  ##
@@ -51,7 +51,7 @@ end
51
51
  # Created: 2013-04-01 18:33:53 +0200
52
52
  # Platform: rbx 2.0.0.rc1
53
53
  #
54
- RubyLint.global_scope.define_constant('Errno::EACCES::Errno') do |klass|
54
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EACCES::Errno') do |klass|
55
55
  end
56
56
 
57
57
  ##
@@ -59,7 +59,7 @@ end
59
59
  # Created: 2013-04-01 18:33:53 +0200
60
60
  # Platform: rbx 2.0.0.rc1
61
61
  #
62
- RubyLint.global_scope.define_constant('Errno::EACCES::Strerror') do |klass|
62
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EACCES::Strerror') do |klass|
63
63
  end
64
64
 
65
65
  ##
@@ -67,8 +67,8 @@ end
67
67
  # Created: 2013-04-01 18:33:53 +0200
68
68
  # Platform: rbx 2.0.0.rc1
69
69
  #
70
- RubyLint.global_scope.define_constant('Errno::EADDRINUSE') do |klass|
71
- klass.inherits(RubyLint.global_constant('SystemCallError'))
70
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EADDRINUSE') do |klass|
71
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
72
72
  end
73
73
 
74
74
  ##
@@ -76,7 +76,7 @@ end
76
76
  # Created: 2013-04-01 18:33:53 +0200
77
77
  # Platform: rbx 2.0.0.rc1
78
78
  #
79
- RubyLint.global_scope.define_constant('Errno::EADDRINUSE::Errno') do |klass|
79
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EADDRINUSE::Errno') do |klass|
80
80
  end
81
81
 
82
82
  ##
@@ -84,7 +84,7 @@ end
84
84
  # Created: 2013-04-01 18:33:53 +0200
85
85
  # Platform: rbx 2.0.0.rc1
86
86
  #
87
- RubyLint.global_scope.define_constant('Errno::EADDRINUSE::Strerror') do |klass|
87
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EADDRINUSE::Strerror') do |klass|
88
88
  end
89
89
 
90
90
  ##
@@ -92,8 +92,8 @@ end
92
92
  # Created: 2013-04-01 18:33:53 +0200
93
93
  # Platform: rbx 2.0.0.rc1
94
94
  #
95
- RubyLint.global_scope.define_constant('Errno::EADDRNOTAVAIL') do |klass|
96
- klass.inherits(RubyLint.global_constant('SystemCallError'))
95
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EADDRNOTAVAIL') do |klass|
96
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
97
97
  end
98
98
 
99
99
  ##
@@ -101,7 +101,7 @@ end
101
101
  # Created: 2013-04-01 18:33:53 +0200
102
102
  # Platform: rbx 2.0.0.rc1
103
103
  #
104
- RubyLint.global_scope.define_constant('Errno::EADDRNOTAVAIL::Errno') do |klass|
104
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EADDRNOTAVAIL::Errno') do |klass|
105
105
  end
106
106
 
107
107
  ##
@@ -109,7 +109,7 @@ end
109
109
  # Created: 2013-04-01 18:33:53 +0200
110
110
  # Platform: rbx 2.0.0.rc1
111
111
  #
112
- RubyLint.global_scope.define_constant('Errno::EADDRNOTAVAIL::Strerror') do |klass|
112
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EADDRNOTAVAIL::Strerror') do |klass|
113
113
  end
114
114
 
115
115
  ##
@@ -117,8 +117,8 @@ end
117
117
  # Created: 2013-04-01 18:33:53 +0200
118
118
  # Platform: rbx 2.0.0.rc1
119
119
  #
120
- RubyLint.global_scope.define_constant('Errno::EADV') do |klass|
121
- klass.inherits(RubyLint.global_constant('SystemCallError'))
120
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EADV') do |klass|
121
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
122
122
  end
123
123
 
124
124
  ##
@@ -126,7 +126,7 @@ end
126
126
  # Created: 2013-04-01 18:33:53 +0200
127
127
  # Platform: rbx 2.0.0.rc1
128
128
  #
129
- RubyLint.global_scope.define_constant('Errno::EADV::Errno') do |klass|
129
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EADV::Errno') do |klass|
130
130
  end
131
131
 
132
132
  ##
@@ -134,7 +134,7 @@ end
134
134
  # Created: 2013-04-01 18:33:53 +0200
135
135
  # Platform: rbx 2.0.0.rc1
136
136
  #
137
- RubyLint.global_scope.define_constant('Errno::EADV::Strerror') do |klass|
137
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EADV::Strerror') do |klass|
138
138
  end
139
139
 
140
140
  ##
@@ -142,8 +142,8 @@ end
142
142
  # Created: 2013-04-01 18:33:53 +0200
143
143
  # Platform: rbx 2.0.0.rc1
144
144
  #
145
- RubyLint.global_scope.define_constant('Errno::EAFNOSUPPORT') do |klass|
146
- klass.inherits(RubyLint.global_constant('SystemCallError'))
145
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EAFNOSUPPORT') do |klass|
146
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
147
147
  end
148
148
 
149
149
  ##
@@ -151,7 +151,7 @@ end
151
151
  # Created: 2013-04-01 18:33:53 +0200
152
152
  # Platform: rbx 2.0.0.rc1
153
153
  #
154
- RubyLint.global_scope.define_constant('Errno::EAFNOSUPPORT::Errno') do |klass|
154
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EAFNOSUPPORT::Errno') do |klass|
155
155
  end
156
156
 
157
157
  ##
@@ -159,7 +159,7 @@ end
159
159
  # Created: 2013-04-01 18:33:53 +0200
160
160
  # Platform: rbx 2.0.0.rc1
161
161
  #
162
- RubyLint.global_scope.define_constant('Errno::EAFNOSUPPORT::Strerror') do |klass|
162
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EAFNOSUPPORT::Strerror') do |klass|
163
163
  end
164
164
 
165
165
  ##
@@ -167,8 +167,8 @@ end
167
167
  # Created: 2013-04-01 18:33:53 +0200
168
168
  # Platform: rbx 2.0.0.rc1
169
169
  #
170
- RubyLint.global_scope.define_constant('Errno::EAGAIN') do |klass|
171
- klass.inherits(RubyLint.global_constant('SystemCallError'))
170
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EAGAIN') do |klass|
171
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
172
172
  end
173
173
 
174
174
  ##
@@ -176,7 +176,7 @@ end
176
176
  # Created: 2013-04-01 18:33:53 +0200
177
177
  # Platform: rbx 2.0.0.rc1
178
178
  #
179
- RubyLint.global_scope.define_constant('Errno::EAGAIN::Errno') do |klass|
179
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EAGAIN::Errno') do |klass|
180
180
  end
181
181
 
182
182
  ##
@@ -184,7 +184,7 @@ end
184
184
  # Created: 2013-04-01 18:33:53 +0200
185
185
  # Platform: rbx 2.0.0.rc1
186
186
  #
187
- RubyLint.global_scope.define_constant('Errno::EAGAIN::Strerror') do |klass|
187
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EAGAIN::Strerror') do |klass|
188
188
  end
189
189
 
190
190
  ##
@@ -192,8 +192,8 @@ end
192
192
  # Created: 2013-04-01 18:33:53 +0200
193
193
  # Platform: rbx 2.0.0.rc1
194
194
  #
195
- RubyLint.global_scope.define_constant('Errno::EALREADY') do |klass|
196
- klass.inherits(RubyLint.global_constant('SystemCallError'))
195
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EALREADY') do |klass|
196
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
197
197
  end
198
198
 
199
199
  ##
@@ -201,7 +201,7 @@ end
201
201
  # Created: 2013-04-01 18:33:53 +0200
202
202
  # Platform: rbx 2.0.0.rc1
203
203
  #
204
- RubyLint.global_scope.define_constant('Errno::EALREADY::Errno') do |klass|
204
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EALREADY::Errno') do |klass|
205
205
  end
206
206
 
207
207
  ##
@@ -209,7 +209,7 @@ end
209
209
  # Created: 2013-04-01 18:33:53 +0200
210
210
  # Platform: rbx 2.0.0.rc1
211
211
  #
212
- RubyLint.global_scope.define_constant('Errno::EALREADY::Strerror') do |klass|
212
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EALREADY::Strerror') do |klass|
213
213
  end
214
214
 
215
215
  ##
@@ -217,8 +217,8 @@ end
217
217
  # Created: 2013-04-01 18:33:53 +0200
218
218
  # Platform: rbx 2.0.0.rc1
219
219
  #
220
- RubyLint.global_scope.define_constant('Errno::EBADE') do |klass|
221
- klass.inherits(RubyLint.global_constant('SystemCallError'))
220
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBADE') do |klass|
221
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
222
222
  end
223
223
 
224
224
  ##
@@ -226,7 +226,7 @@ end
226
226
  # Created: 2013-04-01 18:33:53 +0200
227
227
  # Platform: rbx 2.0.0.rc1
228
228
  #
229
- RubyLint.global_scope.define_constant('Errno::EBADE::Errno') do |klass|
229
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBADE::Errno') do |klass|
230
230
  end
231
231
 
232
232
  ##
@@ -234,7 +234,7 @@ end
234
234
  # Created: 2013-04-01 18:33:53 +0200
235
235
  # Platform: rbx 2.0.0.rc1
236
236
  #
237
- RubyLint.global_scope.define_constant('Errno::EBADE::Strerror') do |klass|
237
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBADE::Strerror') do |klass|
238
238
  end
239
239
 
240
240
  ##
@@ -242,8 +242,8 @@ end
242
242
  # Created: 2013-04-01 18:33:53 +0200
243
243
  # Platform: rbx 2.0.0.rc1
244
244
  #
245
- RubyLint.global_scope.define_constant('Errno::EBADF') do |klass|
246
- klass.inherits(RubyLint.global_constant('SystemCallError'))
245
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBADF') do |klass|
246
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
247
247
  end
248
248
 
249
249
  ##
@@ -251,7 +251,7 @@ end
251
251
  # Created: 2013-04-01 18:33:53 +0200
252
252
  # Platform: rbx 2.0.0.rc1
253
253
  #
254
- RubyLint.global_scope.define_constant('Errno::EBADF::Errno') do |klass|
254
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBADF::Errno') do |klass|
255
255
  end
256
256
 
257
257
  ##
@@ -259,7 +259,7 @@ end
259
259
  # Created: 2013-04-01 18:33:53 +0200
260
260
  # Platform: rbx 2.0.0.rc1
261
261
  #
262
- RubyLint.global_scope.define_constant('Errno::EBADF::Strerror') do |klass|
262
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBADF::Strerror') do |klass|
263
263
  end
264
264
 
265
265
  ##
@@ -267,8 +267,8 @@ end
267
267
  # Created: 2013-04-01 18:33:53 +0200
268
268
  # Platform: rbx 2.0.0.rc1
269
269
  #
270
- RubyLint.global_scope.define_constant('Errno::EBADFD') do |klass|
271
- klass.inherits(RubyLint.global_constant('SystemCallError'))
270
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBADFD') do |klass|
271
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
272
272
  end
273
273
 
274
274
  ##
@@ -276,7 +276,7 @@ end
276
276
  # Created: 2013-04-01 18:33:53 +0200
277
277
  # Platform: rbx 2.0.0.rc1
278
278
  #
279
- RubyLint.global_scope.define_constant('Errno::EBADFD::Errno') do |klass|
279
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBADFD::Errno') do |klass|
280
280
  end
281
281
 
282
282
  ##
@@ -284,7 +284,7 @@ end
284
284
  # Created: 2013-04-01 18:33:53 +0200
285
285
  # Platform: rbx 2.0.0.rc1
286
286
  #
287
- RubyLint.global_scope.define_constant('Errno::EBADFD::Strerror') do |klass|
287
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBADFD::Strerror') do |klass|
288
288
  end
289
289
 
290
290
  ##
@@ -292,8 +292,8 @@ end
292
292
  # Created: 2013-04-01 18:33:53 +0200
293
293
  # Platform: rbx 2.0.0.rc1
294
294
  #
295
- RubyLint.global_scope.define_constant('Errno::EBADMSG') do |klass|
296
- klass.inherits(RubyLint.global_constant('SystemCallError'))
295
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBADMSG') do |klass|
296
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
297
297
  end
298
298
 
299
299
  ##
@@ -301,7 +301,7 @@ end
301
301
  # Created: 2013-04-01 18:33:53 +0200
302
302
  # Platform: rbx 2.0.0.rc1
303
303
  #
304
- RubyLint.global_scope.define_constant('Errno::EBADMSG::Errno') do |klass|
304
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBADMSG::Errno') do |klass|
305
305
  end
306
306
 
307
307
  ##
@@ -309,7 +309,7 @@ end
309
309
  # Created: 2013-04-01 18:33:53 +0200
310
310
  # Platform: rbx 2.0.0.rc1
311
311
  #
312
- RubyLint.global_scope.define_constant('Errno::EBADMSG::Strerror') do |klass|
312
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBADMSG::Strerror') do |klass|
313
313
  end
314
314
 
315
315
  ##
@@ -317,8 +317,8 @@ end
317
317
  # Created: 2013-04-01 18:33:53 +0200
318
318
  # Platform: rbx 2.0.0.rc1
319
319
  #
320
- RubyLint.global_scope.define_constant('Errno::EBADR') do |klass|
321
- klass.inherits(RubyLint.global_constant('SystemCallError'))
320
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBADR') do |klass|
321
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
322
322
  end
323
323
 
324
324
  ##
@@ -326,7 +326,7 @@ end
326
326
  # Created: 2013-04-01 18:33:53 +0200
327
327
  # Platform: rbx 2.0.0.rc1
328
328
  #
329
- RubyLint.global_scope.define_constant('Errno::EBADR::Errno') do |klass|
329
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBADR::Errno') do |klass|
330
330
  end
331
331
 
332
332
  ##
@@ -334,7 +334,7 @@ end
334
334
  # Created: 2013-04-01 18:33:53 +0200
335
335
  # Platform: rbx 2.0.0.rc1
336
336
  #
337
- RubyLint.global_scope.define_constant('Errno::EBADR::Strerror') do |klass|
337
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBADR::Strerror') do |klass|
338
338
  end
339
339
 
340
340
  ##
@@ -342,8 +342,8 @@ end
342
342
  # Created: 2013-04-01 18:33:53 +0200
343
343
  # Platform: rbx 2.0.0.rc1
344
344
  #
345
- RubyLint.global_scope.define_constant('Errno::EBADRQC') do |klass|
346
- klass.inherits(RubyLint.global_constant('SystemCallError'))
345
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBADRQC') do |klass|
346
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
347
347
  end
348
348
 
349
349
  ##
@@ -351,7 +351,7 @@ end
351
351
  # Created: 2013-04-01 18:33:53 +0200
352
352
  # Platform: rbx 2.0.0.rc1
353
353
  #
354
- RubyLint.global_scope.define_constant('Errno::EBADRQC::Errno') do |klass|
354
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBADRQC::Errno') do |klass|
355
355
  end
356
356
 
357
357
  ##
@@ -359,7 +359,7 @@ end
359
359
  # Created: 2013-04-01 18:33:53 +0200
360
360
  # Platform: rbx 2.0.0.rc1
361
361
  #
362
- RubyLint.global_scope.define_constant('Errno::EBADRQC::Strerror') do |klass|
362
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBADRQC::Strerror') do |klass|
363
363
  end
364
364
 
365
365
  ##
@@ -367,8 +367,8 @@ end
367
367
  # Created: 2013-04-01 18:33:53 +0200
368
368
  # Platform: rbx 2.0.0.rc1
369
369
  #
370
- RubyLint.global_scope.define_constant('Errno::EBADSLT') do |klass|
371
- klass.inherits(RubyLint.global_constant('SystemCallError'))
370
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBADSLT') do |klass|
371
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
372
372
  end
373
373
 
374
374
  ##
@@ -376,7 +376,7 @@ end
376
376
  # Created: 2013-04-01 18:33:53 +0200
377
377
  # Platform: rbx 2.0.0.rc1
378
378
  #
379
- RubyLint.global_scope.define_constant('Errno::EBADSLT::Errno') do |klass|
379
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBADSLT::Errno') do |klass|
380
380
  end
381
381
 
382
382
  ##
@@ -384,7 +384,7 @@ end
384
384
  # Created: 2013-04-01 18:33:53 +0200
385
385
  # Platform: rbx 2.0.0.rc1
386
386
  #
387
- RubyLint.global_scope.define_constant('Errno::EBADSLT::Strerror') do |klass|
387
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBADSLT::Strerror') do |klass|
388
388
  end
389
389
 
390
390
  ##
@@ -392,8 +392,8 @@ end
392
392
  # Created: 2013-04-01 18:33:53 +0200
393
393
  # Platform: rbx 2.0.0.rc1
394
394
  #
395
- RubyLint.global_scope.define_constant('Errno::EBFONT') do |klass|
396
- klass.inherits(RubyLint.global_constant('SystemCallError'))
395
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBFONT') do |klass|
396
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
397
397
  end
398
398
 
399
399
  ##
@@ -401,7 +401,7 @@ end
401
401
  # Created: 2013-04-01 18:33:53 +0200
402
402
  # Platform: rbx 2.0.0.rc1
403
403
  #
404
- RubyLint.global_scope.define_constant('Errno::EBFONT::Errno') do |klass|
404
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBFONT::Errno') do |klass|
405
405
  end
406
406
 
407
407
  ##
@@ -409,7 +409,7 @@ end
409
409
  # Created: 2013-04-01 18:33:53 +0200
410
410
  # Platform: rbx 2.0.0.rc1
411
411
  #
412
- RubyLint.global_scope.define_constant('Errno::EBFONT::Strerror') do |klass|
412
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBFONT::Strerror') do |klass|
413
413
  end
414
414
 
415
415
  ##
@@ -417,8 +417,8 @@ end
417
417
  # Created: 2013-04-01 18:33:53 +0200
418
418
  # Platform: rbx 2.0.0.rc1
419
419
  #
420
- RubyLint.global_scope.define_constant('Errno::EBUSY') do |klass|
421
- klass.inherits(RubyLint.global_constant('SystemCallError'))
420
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBUSY') do |klass|
421
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
422
422
  end
423
423
 
424
424
  ##
@@ -426,7 +426,7 @@ end
426
426
  # Created: 2013-04-01 18:33:53 +0200
427
427
  # Platform: rbx 2.0.0.rc1
428
428
  #
429
- RubyLint.global_scope.define_constant('Errno::EBUSY::Errno') do |klass|
429
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBUSY::Errno') do |klass|
430
430
  end
431
431
 
432
432
  ##
@@ -434,7 +434,7 @@ end
434
434
  # Created: 2013-04-01 18:33:53 +0200
435
435
  # Platform: rbx 2.0.0.rc1
436
436
  #
437
- RubyLint.global_scope.define_constant('Errno::EBUSY::Strerror') do |klass|
437
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EBUSY::Strerror') do |klass|
438
438
  end
439
439
 
440
440
  ##
@@ -442,8 +442,8 @@ end
442
442
  # Created: 2013-04-01 18:33:53 +0200
443
443
  # Platform: rbx 2.0.0.rc1
444
444
  #
445
- RubyLint.global_scope.define_constant('Errno::ECANCELED') do |klass|
446
- klass.inherits(RubyLint.global_constant('SystemCallError'))
445
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ECANCELED') do |klass|
446
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
447
447
  end
448
448
 
449
449
  ##
@@ -451,7 +451,7 @@ end
451
451
  # Created: 2013-04-01 18:33:53 +0200
452
452
  # Platform: rbx 2.0.0.rc1
453
453
  #
454
- RubyLint.global_scope.define_constant('Errno::ECANCELED::Errno') do |klass|
454
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ECANCELED::Errno') do |klass|
455
455
  end
456
456
 
457
457
  ##
@@ -459,7 +459,7 @@ end
459
459
  # Created: 2013-04-01 18:33:53 +0200
460
460
  # Platform: rbx 2.0.0.rc1
461
461
  #
462
- RubyLint.global_scope.define_constant('Errno::ECANCELED::Strerror') do |klass|
462
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ECANCELED::Strerror') do |klass|
463
463
  end
464
464
 
465
465
  ##
@@ -467,8 +467,8 @@ end
467
467
  # Created: 2013-04-01 18:33:53 +0200
468
468
  # Platform: rbx 2.0.0.rc1
469
469
  #
470
- RubyLint.global_scope.define_constant('Errno::ECHILD') do |klass|
471
- klass.inherits(RubyLint.global_constant('SystemCallError'))
470
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ECHILD') do |klass|
471
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
472
472
  end
473
473
 
474
474
  ##
@@ -476,7 +476,7 @@ end
476
476
  # Created: 2013-04-01 18:33:53 +0200
477
477
  # Platform: rbx 2.0.0.rc1
478
478
  #
479
- RubyLint.global_scope.define_constant('Errno::ECHILD::Errno') do |klass|
479
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ECHILD::Errno') do |klass|
480
480
  end
481
481
 
482
482
  ##
@@ -484,7 +484,7 @@ end
484
484
  # Created: 2013-04-01 18:33:53 +0200
485
485
  # Platform: rbx 2.0.0.rc1
486
486
  #
487
- RubyLint.global_scope.define_constant('Errno::ECHILD::Strerror') do |klass|
487
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ECHILD::Strerror') do |klass|
488
488
  end
489
489
 
490
490
  ##
@@ -492,8 +492,8 @@ end
492
492
  # Created: 2013-04-01 18:33:53 +0200
493
493
  # Platform: rbx 2.0.0.rc1
494
494
  #
495
- RubyLint.global_scope.define_constant('Errno::ECHRNG') do |klass|
496
- klass.inherits(RubyLint.global_constant('SystemCallError'))
495
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ECHRNG') do |klass|
496
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
497
497
  end
498
498
 
499
499
  ##
@@ -501,7 +501,7 @@ end
501
501
  # Created: 2013-04-01 18:33:53 +0200
502
502
  # Platform: rbx 2.0.0.rc1
503
503
  #
504
- RubyLint.global_scope.define_constant('Errno::ECHRNG::Errno') do |klass|
504
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ECHRNG::Errno') do |klass|
505
505
  end
506
506
 
507
507
  ##
@@ -509,7 +509,7 @@ end
509
509
  # Created: 2013-04-01 18:33:53 +0200
510
510
  # Platform: rbx 2.0.0.rc1
511
511
  #
512
- RubyLint.global_scope.define_constant('Errno::ECHRNG::Strerror') do |klass|
512
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ECHRNG::Strerror') do |klass|
513
513
  end
514
514
 
515
515
  ##
@@ -517,8 +517,8 @@ end
517
517
  # Created: 2013-04-01 18:33:53 +0200
518
518
  # Platform: rbx 2.0.0.rc1
519
519
  #
520
- RubyLint.global_scope.define_constant('Errno::ECOMM') do |klass|
521
- klass.inherits(RubyLint.global_constant('SystemCallError'))
520
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ECOMM') do |klass|
521
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
522
522
  end
523
523
 
524
524
  ##
@@ -526,7 +526,7 @@ end
526
526
  # Created: 2013-04-01 18:33:53 +0200
527
527
  # Platform: rbx 2.0.0.rc1
528
528
  #
529
- RubyLint.global_scope.define_constant('Errno::ECOMM::Errno') do |klass|
529
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ECOMM::Errno') do |klass|
530
530
  end
531
531
 
532
532
  ##
@@ -534,7 +534,7 @@ end
534
534
  # Created: 2013-04-01 18:33:53 +0200
535
535
  # Platform: rbx 2.0.0.rc1
536
536
  #
537
- RubyLint.global_scope.define_constant('Errno::ECOMM::Strerror') do |klass|
537
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ECOMM::Strerror') do |klass|
538
538
  end
539
539
 
540
540
  ##
@@ -542,8 +542,8 @@ end
542
542
  # Created: 2013-04-01 18:33:53 +0200
543
543
  # Platform: rbx 2.0.0.rc1
544
544
  #
545
- RubyLint.global_scope.define_constant('Errno::ECONNABORTED') do |klass|
546
- klass.inherits(RubyLint.global_constant('SystemCallError'))
545
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ECONNABORTED') do |klass|
546
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
547
547
  end
548
548
 
549
549
  ##
@@ -551,7 +551,7 @@ end
551
551
  # Created: 2013-04-01 18:33:53 +0200
552
552
  # Platform: rbx 2.0.0.rc1
553
553
  #
554
- RubyLint.global_scope.define_constant('Errno::ECONNABORTED::Errno') do |klass|
554
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ECONNABORTED::Errno') do |klass|
555
555
  end
556
556
 
557
557
  ##
@@ -559,7 +559,7 @@ end
559
559
  # Created: 2013-04-01 18:33:53 +0200
560
560
  # Platform: rbx 2.0.0.rc1
561
561
  #
562
- RubyLint.global_scope.define_constant('Errno::ECONNABORTED::Strerror') do |klass|
562
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ECONNABORTED::Strerror') do |klass|
563
563
  end
564
564
 
565
565
  ##
@@ -567,8 +567,8 @@ end
567
567
  # Created: 2013-04-01 18:33:53 +0200
568
568
  # Platform: rbx 2.0.0.rc1
569
569
  #
570
- RubyLint.global_scope.define_constant('Errno::ECONNREFUSED') do |klass|
571
- klass.inherits(RubyLint.global_constant('SystemCallError'))
570
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ECONNREFUSED') do |klass|
571
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
572
572
  end
573
573
 
574
574
  ##
@@ -576,7 +576,7 @@ end
576
576
  # Created: 2013-04-01 18:33:53 +0200
577
577
  # Platform: rbx 2.0.0.rc1
578
578
  #
579
- RubyLint.global_scope.define_constant('Errno::ECONNREFUSED::Errno') do |klass|
579
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ECONNREFUSED::Errno') do |klass|
580
580
  end
581
581
 
582
582
  ##
@@ -584,7 +584,7 @@ end
584
584
  # Created: 2013-04-01 18:33:53 +0200
585
585
  # Platform: rbx 2.0.0.rc1
586
586
  #
587
- RubyLint.global_scope.define_constant('Errno::ECONNREFUSED::Strerror') do |klass|
587
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ECONNREFUSED::Strerror') do |klass|
588
588
  end
589
589
 
590
590
  ##
@@ -592,8 +592,8 @@ end
592
592
  # Created: 2013-04-01 18:33:53 +0200
593
593
  # Platform: rbx 2.0.0.rc1
594
594
  #
595
- RubyLint.global_scope.define_constant('Errno::ECONNRESET') do |klass|
596
- klass.inherits(RubyLint.global_constant('SystemCallError'))
595
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ECONNRESET') do |klass|
596
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
597
597
  end
598
598
 
599
599
  ##
@@ -601,7 +601,7 @@ end
601
601
  # Created: 2013-04-01 18:33:53 +0200
602
602
  # Platform: rbx 2.0.0.rc1
603
603
  #
604
- RubyLint.global_scope.define_constant('Errno::ECONNRESET::Errno') do |klass|
604
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ECONNRESET::Errno') do |klass|
605
605
  end
606
606
 
607
607
  ##
@@ -609,7 +609,7 @@ end
609
609
  # Created: 2013-04-01 18:33:53 +0200
610
610
  # Platform: rbx 2.0.0.rc1
611
611
  #
612
- RubyLint.global_scope.define_constant('Errno::ECONNRESET::Strerror') do |klass|
612
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ECONNRESET::Strerror') do |klass|
613
613
  end
614
614
 
615
615
  ##
@@ -617,8 +617,8 @@ end
617
617
  # Created: 2013-04-01 18:33:53 +0200
618
618
  # Platform: rbx 2.0.0.rc1
619
619
  #
620
- RubyLint.global_scope.define_constant('Errno::EDEADLK') do |klass|
621
- klass.inherits(RubyLint.global_constant('SystemCallError'))
620
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EDEADLK') do |klass|
621
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
622
622
  end
623
623
 
624
624
  ##
@@ -626,7 +626,7 @@ end
626
626
  # Created: 2013-04-01 18:33:53 +0200
627
627
  # Platform: rbx 2.0.0.rc1
628
628
  #
629
- RubyLint.global_scope.define_constant('Errno::EDEADLK::Errno') do |klass|
629
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EDEADLK::Errno') do |klass|
630
630
  end
631
631
 
632
632
  ##
@@ -634,7 +634,7 @@ end
634
634
  # Created: 2013-04-01 18:33:53 +0200
635
635
  # Platform: rbx 2.0.0.rc1
636
636
  #
637
- RubyLint.global_scope.define_constant('Errno::EDEADLK::Strerror') do |klass|
637
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EDEADLK::Strerror') do |klass|
638
638
  end
639
639
 
640
640
  ##
@@ -642,8 +642,8 @@ end
642
642
  # Created: 2013-04-01 18:33:53 +0200
643
643
  # Platform: rbx 2.0.0.rc1
644
644
  #
645
- RubyLint.global_scope.define_constant('Errno::EDESTADDRREQ') do |klass|
646
- klass.inherits(RubyLint.global_constant('SystemCallError'))
645
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EDESTADDRREQ') do |klass|
646
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
647
647
  end
648
648
 
649
649
  ##
@@ -651,7 +651,7 @@ end
651
651
  # Created: 2013-04-01 18:33:53 +0200
652
652
  # Platform: rbx 2.0.0.rc1
653
653
  #
654
- RubyLint.global_scope.define_constant('Errno::EDESTADDRREQ::Errno') do |klass|
654
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EDESTADDRREQ::Errno') do |klass|
655
655
  end
656
656
 
657
657
  ##
@@ -659,7 +659,7 @@ end
659
659
  # Created: 2013-04-01 18:33:53 +0200
660
660
  # Platform: rbx 2.0.0.rc1
661
661
  #
662
- RubyLint.global_scope.define_constant('Errno::EDESTADDRREQ::Strerror') do |klass|
662
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EDESTADDRREQ::Strerror') do |klass|
663
663
  end
664
664
 
665
665
  ##
@@ -667,8 +667,8 @@ end
667
667
  # Created: 2013-04-01 18:33:53 +0200
668
668
  # Platform: rbx 2.0.0.rc1
669
669
  #
670
- RubyLint.global_scope.define_constant('Errno::EDOM') do |klass|
671
- klass.inherits(RubyLint.global_constant('SystemCallError'))
670
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EDOM') do |klass|
671
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
672
672
  end
673
673
 
674
674
  ##
@@ -676,7 +676,7 @@ end
676
676
  # Created: 2013-04-01 18:33:53 +0200
677
677
  # Platform: rbx 2.0.0.rc1
678
678
  #
679
- RubyLint.global_scope.define_constant('Errno::EDOM::Errno') do |klass|
679
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EDOM::Errno') do |klass|
680
680
  end
681
681
 
682
682
  ##
@@ -684,7 +684,7 @@ end
684
684
  # Created: 2013-04-01 18:33:53 +0200
685
685
  # Platform: rbx 2.0.0.rc1
686
686
  #
687
- RubyLint.global_scope.define_constant('Errno::EDOM::Strerror') do |klass|
687
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EDOM::Strerror') do |klass|
688
688
  end
689
689
 
690
690
  ##
@@ -692,8 +692,8 @@ end
692
692
  # Created: 2013-04-01 18:33:53 +0200
693
693
  # Platform: rbx 2.0.0.rc1
694
694
  #
695
- RubyLint.global_scope.define_constant('Errno::EDOTDOT') do |klass|
696
- klass.inherits(RubyLint.global_constant('SystemCallError'))
695
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EDOTDOT') do |klass|
696
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
697
697
  end
698
698
 
699
699
  ##
@@ -701,7 +701,7 @@ end
701
701
  # Created: 2013-04-01 18:33:53 +0200
702
702
  # Platform: rbx 2.0.0.rc1
703
703
  #
704
- RubyLint.global_scope.define_constant('Errno::EDOTDOT::Errno') do |klass|
704
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EDOTDOT::Errno') do |klass|
705
705
  end
706
706
 
707
707
  ##
@@ -709,7 +709,7 @@ end
709
709
  # Created: 2013-04-01 18:33:53 +0200
710
710
  # Platform: rbx 2.0.0.rc1
711
711
  #
712
- RubyLint.global_scope.define_constant('Errno::EDOTDOT::Strerror') do |klass|
712
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EDOTDOT::Strerror') do |klass|
713
713
  end
714
714
 
715
715
  ##
@@ -717,8 +717,8 @@ end
717
717
  # Created: 2013-04-01 18:33:53 +0200
718
718
  # Platform: rbx 2.0.0.rc1
719
719
  #
720
- RubyLint.global_scope.define_constant('Errno::EDQUOT') do |klass|
721
- klass.inherits(RubyLint.global_constant('SystemCallError'))
720
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EDQUOT') do |klass|
721
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
722
722
  end
723
723
 
724
724
  ##
@@ -726,7 +726,7 @@ end
726
726
  # Created: 2013-04-01 18:33:53 +0200
727
727
  # Platform: rbx 2.0.0.rc1
728
728
  #
729
- RubyLint.global_scope.define_constant('Errno::EDQUOT::Errno') do |klass|
729
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EDQUOT::Errno') do |klass|
730
730
  end
731
731
 
732
732
  ##
@@ -734,7 +734,7 @@ end
734
734
  # Created: 2013-04-01 18:33:53 +0200
735
735
  # Platform: rbx 2.0.0.rc1
736
736
  #
737
- RubyLint.global_scope.define_constant('Errno::EDQUOT::Strerror') do |klass|
737
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EDQUOT::Strerror') do |klass|
738
738
  end
739
739
 
740
740
  ##
@@ -742,8 +742,8 @@ end
742
742
  # Created: 2013-04-01 18:33:53 +0200
743
743
  # Platform: rbx 2.0.0.rc1
744
744
  #
745
- RubyLint.global_scope.define_constant('Errno::EEXIST') do |klass|
746
- klass.inherits(RubyLint.global_constant('SystemCallError'))
745
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EEXIST') do |klass|
746
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
747
747
  end
748
748
 
749
749
  ##
@@ -751,7 +751,7 @@ end
751
751
  # Created: 2013-04-01 18:33:53 +0200
752
752
  # Platform: rbx 2.0.0.rc1
753
753
  #
754
- RubyLint.global_scope.define_constant('Errno::EEXIST::Errno') do |klass|
754
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EEXIST::Errno') do |klass|
755
755
  end
756
756
 
757
757
  ##
@@ -759,7 +759,7 @@ end
759
759
  # Created: 2013-04-01 18:33:53 +0200
760
760
  # Platform: rbx 2.0.0.rc1
761
761
  #
762
- RubyLint.global_scope.define_constant('Errno::EEXIST::Strerror') do |klass|
762
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EEXIST::Strerror') do |klass|
763
763
  end
764
764
 
765
765
  ##
@@ -767,8 +767,8 @@ end
767
767
  # Created: 2013-04-01 18:33:53 +0200
768
768
  # Platform: rbx 2.0.0.rc1
769
769
  #
770
- RubyLint.global_scope.define_constant('Errno::EFAULT') do |klass|
771
- klass.inherits(RubyLint.global_constant('SystemCallError'))
770
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EFAULT') do |klass|
771
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
772
772
  end
773
773
 
774
774
  ##
@@ -776,7 +776,7 @@ end
776
776
  # Created: 2013-04-01 18:33:53 +0200
777
777
  # Platform: rbx 2.0.0.rc1
778
778
  #
779
- RubyLint.global_scope.define_constant('Errno::EFAULT::Errno') do |klass|
779
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EFAULT::Errno') do |klass|
780
780
  end
781
781
 
782
782
  ##
@@ -784,7 +784,7 @@ end
784
784
  # Created: 2013-04-01 18:33:53 +0200
785
785
  # Platform: rbx 2.0.0.rc1
786
786
  #
787
- RubyLint.global_scope.define_constant('Errno::EFAULT::Strerror') do |klass|
787
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EFAULT::Strerror') do |klass|
788
788
  end
789
789
 
790
790
  ##
@@ -792,8 +792,8 @@ end
792
792
  # Created: 2013-04-01 18:33:53 +0200
793
793
  # Platform: rbx 2.0.0.rc1
794
794
  #
795
- RubyLint.global_scope.define_constant('Errno::EFBIG') do |klass|
796
- klass.inherits(RubyLint.global_constant('SystemCallError'))
795
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EFBIG') do |klass|
796
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
797
797
  end
798
798
 
799
799
  ##
@@ -801,7 +801,7 @@ end
801
801
  # Created: 2013-04-01 18:33:53 +0200
802
802
  # Platform: rbx 2.0.0.rc1
803
803
  #
804
- RubyLint.global_scope.define_constant('Errno::EFBIG::Errno') do |klass|
804
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EFBIG::Errno') do |klass|
805
805
  end
806
806
 
807
807
  ##
@@ -809,7 +809,7 @@ end
809
809
  # Created: 2013-04-01 18:33:53 +0200
810
810
  # Platform: rbx 2.0.0.rc1
811
811
  #
812
- RubyLint.global_scope.define_constant('Errno::EFBIG::Strerror') do |klass|
812
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EFBIG::Strerror') do |klass|
813
813
  end
814
814
 
815
815
  ##
@@ -817,8 +817,8 @@ end
817
817
  # Created: 2013-04-01 18:33:53 +0200
818
818
  # Platform: rbx 2.0.0.rc1
819
819
  #
820
- RubyLint.global_scope.define_constant('Errno::EHOSTDOWN') do |klass|
821
- klass.inherits(RubyLint.global_constant('SystemCallError'))
820
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EHOSTDOWN') do |klass|
821
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
822
822
  end
823
823
 
824
824
  ##
@@ -826,7 +826,7 @@ end
826
826
  # Created: 2013-04-01 18:33:53 +0200
827
827
  # Platform: rbx 2.0.0.rc1
828
828
  #
829
- RubyLint.global_scope.define_constant('Errno::EHOSTDOWN::Errno') do |klass|
829
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EHOSTDOWN::Errno') do |klass|
830
830
  end
831
831
 
832
832
  ##
@@ -834,7 +834,7 @@ end
834
834
  # Created: 2013-04-01 18:33:53 +0200
835
835
  # Platform: rbx 2.0.0.rc1
836
836
  #
837
- RubyLint.global_scope.define_constant('Errno::EHOSTDOWN::Strerror') do |klass|
837
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EHOSTDOWN::Strerror') do |klass|
838
838
  end
839
839
 
840
840
  ##
@@ -842,8 +842,8 @@ end
842
842
  # Created: 2013-04-01 18:33:53 +0200
843
843
  # Platform: rbx 2.0.0.rc1
844
844
  #
845
- RubyLint.global_scope.define_constant('Errno::EHOSTUNREACH') do |klass|
846
- klass.inherits(RubyLint.global_constant('SystemCallError'))
845
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EHOSTUNREACH') do |klass|
846
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
847
847
  end
848
848
 
849
849
  ##
@@ -851,7 +851,7 @@ end
851
851
  # Created: 2013-04-01 18:33:53 +0200
852
852
  # Platform: rbx 2.0.0.rc1
853
853
  #
854
- RubyLint.global_scope.define_constant('Errno::EHOSTUNREACH::Errno') do |klass|
854
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EHOSTUNREACH::Errno') do |klass|
855
855
  end
856
856
 
857
857
  ##
@@ -859,7 +859,7 @@ end
859
859
  # Created: 2013-04-01 18:33:53 +0200
860
860
  # Platform: rbx 2.0.0.rc1
861
861
  #
862
- RubyLint.global_scope.define_constant('Errno::EHOSTUNREACH::Strerror') do |klass|
862
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EHOSTUNREACH::Strerror') do |klass|
863
863
  end
864
864
 
865
865
  ##
@@ -867,8 +867,8 @@ end
867
867
  # Created: 2013-04-01 18:33:53 +0200
868
868
  # Platform: rbx 2.0.0.rc1
869
869
  #
870
- RubyLint.global_scope.define_constant('Errno::EIDRM') do |klass|
871
- klass.inherits(RubyLint.global_constant('SystemCallError'))
870
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EIDRM') do |klass|
871
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
872
872
  end
873
873
 
874
874
  ##
@@ -876,7 +876,7 @@ end
876
876
  # Created: 2013-04-01 18:33:53 +0200
877
877
  # Platform: rbx 2.0.0.rc1
878
878
  #
879
- RubyLint.global_scope.define_constant('Errno::EIDRM::Errno') do |klass|
879
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EIDRM::Errno') do |klass|
880
880
  end
881
881
 
882
882
  ##
@@ -884,7 +884,7 @@ end
884
884
  # Created: 2013-04-01 18:33:53 +0200
885
885
  # Platform: rbx 2.0.0.rc1
886
886
  #
887
- RubyLint.global_scope.define_constant('Errno::EIDRM::Strerror') do |klass|
887
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EIDRM::Strerror') do |klass|
888
888
  end
889
889
 
890
890
  ##
@@ -892,8 +892,8 @@ end
892
892
  # Created: 2013-04-01 18:33:53 +0200
893
893
  # Platform: rbx 2.0.0.rc1
894
894
  #
895
- RubyLint.global_scope.define_constant('Errno::EILSEQ') do |klass|
896
- klass.inherits(RubyLint.global_constant('SystemCallError'))
895
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EILSEQ') do |klass|
896
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
897
897
  end
898
898
 
899
899
  ##
@@ -901,7 +901,7 @@ end
901
901
  # Created: 2013-04-01 18:33:53 +0200
902
902
  # Platform: rbx 2.0.0.rc1
903
903
  #
904
- RubyLint.global_scope.define_constant('Errno::EILSEQ::Errno') do |klass|
904
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EILSEQ::Errno') do |klass|
905
905
  end
906
906
 
907
907
  ##
@@ -909,7 +909,7 @@ end
909
909
  # Created: 2013-04-01 18:33:53 +0200
910
910
  # Platform: rbx 2.0.0.rc1
911
911
  #
912
- RubyLint.global_scope.define_constant('Errno::EILSEQ::Strerror') do |klass|
912
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EILSEQ::Strerror') do |klass|
913
913
  end
914
914
 
915
915
  ##
@@ -917,8 +917,8 @@ end
917
917
  # Created: 2013-04-01 18:33:53 +0200
918
918
  # Platform: rbx 2.0.0.rc1
919
919
  #
920
- RubyLint.global_scope.define_constant('Errno::EINPROGRESS') do |klass|
921
- klass.inherits(RubyLint.global_constant('SystemCallError'))
920
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EINPROGRESS') do |klass|
921
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
922
922
  end
923
923
 
924
924
  ##
@@ -926,7 +926,7 @@ end
926
926
  # Created: 2013-04-01 18:33:53 +0200
927
927
  # Platform: rbx 2.0.0.rc1
928
928
  #
929
- RubyLint.global_scope.define_constant('Errno::EINPROGRESS::Errno') do |klass|
929
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EINPROGRESS::Errno') do |klass|
930
930
  end
931
931
 
932
932
  ##
@@ -934,7 +934,7 @@ end
934
934
  # Created: 2013-04-01 18:33:53 +0200
935
935
  # Platform: rbx 2.0.0.rc1
936
936
  #
937
- RubyLint.global_scope.define_constant('Errno::EINPROGRESS::Strerror') do |klass|
937
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EINPROGRESS::Strerror') do |klass|
938
938
  end
939
939
 
940
940
  ##
@@ -942,8 +942,8 @@ end
942
942
  # Created: 2013-04-01 18:33:53 +0200
943
943
  # Platform: rbx 2.0.0.rc1
944
944
  #
945
- RubyLint.global_scope.define_constant('Errno::EINTR') do |klass|
946
- klass.inherits(RubyLint.global_constant('SystemCallError'))
945
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EINTR') do |klass|
946
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
947
947
  end
948
948
 
949
949
  ##
@@ -951,7 +951,7 @@ end
951
951
  # Created: 2013-04-01 18:33:53 +0200
952
952
  # Platform: rbx 2.0.0.rc1
953
953
  #
954
- RubyLint.global_scope.define_constant('Errno::EINTR::Errno') do |klass|
954
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EINTR::Errno') do |klass|
955
955
  end
956
956
 
957
957
  ##
@@ -959,7 +959,7 @@ end
959
959
  # Created: 2013-04-01 18:33:53 +0200
960
960
  # Platform: rbx 2.0.0.rc1
961
961
  #
962
- RubyLint.global_scope.define_constant('Errno::EINTR::Strerror') do |klass|
962
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EINTR::Strerror') do |klass|
963
963
  end
964
964
 
965
965
  ##
@@ -967,8 +967,8 @@ end
967
967
  # Created: 2013-04-01 18:33:53 +0200
968
968
  # Platform: rbx 2.0.0.rc1
969
969
  #
970
- RubyLint.global_scope.define_constant('Errno::EINVAL') do |klass|
971
- klass.inherits(RubyLint.global_constant('SystemCallError'))
970
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EINVAL') do |klass|
971
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
972
972
  end
973
973
 
974
974
  ##
@@ -976,7 +976,7 @@ end
976
976
  # Created: 2013-04-01 18:33:53 +0200
977
977
  # Platform: rbx 2.0.0.rc1
978
978
  #
979
- RubyLint.global_scope.define_constant('Errno::EINVAL::Errno') do |klass|
979
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EINVAL::Errno') do |klass|
980
980
  end
981
981
 
982
982
  ##
@@ -984,7 +984,7 @@ end
984
984
  # Created: 2013-04-01 18:33:53 +0200
985
985
  # Platform: rbx 2.0.0.rc1
986
986
  #
987
- RubyLint.global_scope.define_constant('Errno::EINVAL::Strerror') do |klass|
987
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EINVAL::Strerror') do |klass|
988
988
  end
989
989
 
990
990
  ##
@@ -992,8 +992,8 @@ end
992
992
  # Created: 2013-04-01 18:33:53 +0200
993
993
  # Platform: rbx 2.0.0.rc1
994
994
  #
995
- RubyLint.global_scope.define_constant('Errno::EIO') do |klass|
996
- klass.inherits(RubyLint.global_constant('SystemCallError'))
995
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EIO') do |klass|
996
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
997
997
  end
998
998
 
999
999
  ##
@@ -1001,7 +1001,7 @@ end
1001
1001
  # Created: 2013-04-01 18:33:53 +0200
1002
1002
  # Platform: rbx 2.0.0.rc1
1003
1003
  #
1004
- RubyLint.global_scope.define_constant('Errno::EIO::Errno') do |klass|
1004
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EIO::Errno') do |klass|
1005
1005
  end
1006
1006
 
1007
1007
  ##
@@ -1009,7 +1009,7 @@ end
1009
1009
  # Created: 2013-04-01 18:33:53 +0200
1010
1010
  # Platform: rbx 2.0.0.rc1
1011
1011
  #
1012
- RubyLint.global_scope.define_constant('Errno::EIO::Strerror') do |klass|
1012
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EIO::Strerror') do |klass|
1013
1013
  end
1014
1014
 
1015
1015
  ##
@@ -1017,8 +1017,8 @@ end
1017
1017
  # Created: 2013-04-01 18:33:53 +0200
1018
1018
  # Platform: rbx 2.0.0.rc1
1019
1019
  #
1020
- RubyLint.global_scope.define_constant('Errno::EISCONN') do |klass|
1021
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1020
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EISCONN') do |klass|
1021
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1022
1022
  end
1023
1023
 
1024
1024
  ##
@@ -1026,7 +1026,7 @@ end
1026
1026
  # Created: 2013-04-01 18:33:53 +0200
1027
1027
  # Platform: rbx 2.0.0.rc1
1028
1028
  #
1029
- RubyLint.global_scope.define_constant('Errno::EISCONN::Errno') do |klass|
1029
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EISCONN::Errno') do |klass|
1030
1030
  end
1031
1031
 
1032
1032
  ##
@@ -1034,7 +1034,7 @@ end
1034
1034
  # Created: 2013-04-01 18:33:53 +0200
1035
1035
  # Platform: rbx 2.0.0.rc1
1036
1036
  #
1037
- RubyLint.global_scope.define_constant('Errno::EISCONN::Strerror') do |klass|
1037
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EISCONN::Strerror') do |klass|
1038
1038
  end
1039
1039
 
1040
1040
  ##
@@ -1042,8 +1042,8 @@ end
1042
1042
  # Created: 2013-04-01 18:33:53 +0200
1043
1043
  # Platform: rbx 2.0.0.rc1
1044
1044
  #
1045
- RubyLint.global_scope.define_constant('Errno::EISDIR') do |klass|
1046
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1045
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EISDIR') do |klass|
1046
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1047
1047
  end
1048
1048
 
1049
1049
  ##
@@ -1051,7 +1051,7 @@ end
1051
1051
  # Created: 2013-04-01 18:33:53 +0200
1052
1052
  # Platform: rbx 2.0.0.rc1
1053
1053
  #
1054
- RubyLint.global_scope.define_constant('Errno::EISDIR::Errno') do |klass|
1054
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EISDIR::Errno') do |klass|
1055
1055
  end
1056
1056
 
1057
1057
  ##
@@ -1059,7 +1059,7 @@ end
1059
1059
  # Created: 2013-04-01 18:33:53 +0200
1060
1060
  # Platform: rbx 2.0.0.rc1
1061
1061
  #
1062
- RubyLint.global_scope.define_constant('Errno::EISDIR::Strerror') do |klass|
1062
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EISDIR::Strerror') do |klass|
1063
1063
  end
1064
1064
 
1065
1065
  ##
@@ -1067,8 +1067,8 @@ end
1067
1067
  # Created: 2013-04-01 18:33:53 +0200
1068
1068
  # Platform: rbx 2.0.0.rc1
1069
1069
  #
1070
- RubyLint.global_scope.define_constant('Errno::EISNAM') do |klass|
1071
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1070
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EISNAM') do |klass|
1071
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1072
1072
  end
1073
1073
 
1074
1074
  ##
@@ -1076,7 +1076,7 @@ end
1076
1076
  # Created: 2013-04-01 18:33:53 +0200
1077
1077
  # Platform: rbx 2.0.0.rc1
1078
1078
  #
1079
- RubyLint.global_scope.define_constant('Errno::EISNAM::Errno') do |klass|
1079
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EISNAM::Errno') do |klass|
1080
1080
  end
1081
1081
 
1082
1082
  ##
@@ -1084,7 +1084,7 @@ end
1084
1084
  # Created: 2013-04-01 18:33:53 +0200
1085
1085
  # Platform: rbx 2.0.0.rc1
1086
1086
  #
1087
- RubyLint.global_scope.define_constant('Errno::EISNAM::Strerror') do |klass|
1087
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EISNAM::Strerror') do |klass|
1088
1088
  end
1089
1089
 
1090
1090
  ##
@@ -1092,8 +1092,8 @@ end
1092
1092
  # Created: 2013-04-01 18:33:53 +0200
1093
1093
  # Platform: rbx 2.0.0.rc1
1094
1094
  #
1095
- RubyLint.global_scope.define_constant('Errno::EKEYEXPIRED') do |klass|
1096
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1095
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EKEYEXPIRED') do |klass|
1096
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1097
1097
  end
1098
1098
 
1099
1099
  ##
@@ -1101,7 +1101,7 @@ end
1101
1101
  # Created: 2013-04-01 18:33:53 +0200
1102
1102
  # Platform: rbx 2.0.0.rc1
1103
1103
  #
1104
- RubyLint.global_scope.define_constant('Errno::EKEYEXPIRED::Errno') do |klass|
1104
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EKEYEXPIRED::Errno') do |klass|
1105
1105
  end
1106
1106
 
1107
1107
  ##
@@ -1109,7 +1109,7 @@ end
1109
1109
  # Created: 2013-04-01 18:33:53 +0200
1110
1110
  # Platform: rbx 2.0.0.rc1
1111
1111
  #
1112
- RubyLint.global_scope.define_constant('Errno::EKEYEXPIRED::Strerror') do |klass|
1112
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EKEYEXPIRED::Strerror') do |klass|
1113
1113
  end
1114
1114
 
1115
1115
  ##
@@ -1117,8 +1117,8 @@ end
1117
1117
  # Created: 2013-04-01 18:33:53 +0200
1118
1118
  # Platform: rbx 2.0.0.rc1
1119
1119
  #
1120
- RubyLint.global_scope.define_constant('Errno::EKEYREJECTED') do |klass|
1121
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1120
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EKEYREJECTED') do |klass|
1121
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1122
1122
  end
1123
1123
 
1124
1124
  ##
@@ -1126,7 +1126,7 @@ end
1126
1126
  # Created: 2013-04-01 18:33:53 +0200
1127
1127
  # Platform: rbx 2.0.0.rc1
1128
1128
  #
1129
- RubyLint.global_scope.define_constant('Errno::EKEYREJECTED::Errno') do |klass|
1129
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EKEYREJECTED::Errno') do |klass|
1130
1130
  end
1131
1131
 
1132
1132
  ##
@@ -1134,7 +1134,7 @@ end
1134
1134
  # Created: 2013-04-01 18:33:53 +0200
1135
1135
  # Platform: rbx 2.0.0.rc1
1136
1136
  #
1137
- RubyLint.global_scope.define_constant('Errno::EKEYREJECTED::Strerror') do |klass|
1137
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EKEYREJECTED::Strerror') do |klass|
1138
1138
  end
1139
1139
 
1140
1140
  ##
@@ -1142,8 +1142,8 @@ end
1142
1142
  # Created: 2013-04-01 18:33:53 +0200
1143
1143
  # Platform: rbx 2.0.0.rc1
1144
1144
  #
1145
- RubyLint.global_scope.define_constant('Errno::EKEYREVOKED') do |klass|
1146
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1145
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EKEYREVOKED') do |klass|
1146
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1147
1147
  end
1148
1148
 
1149
1149
  ##
@@ -1151,7 +1151,7 @@ end
1151
1151
  # Created: 2013-04-01 18:33:53 +0200
1152
1152
  # Platform: rbx 2.0.0.rc1
1153
1153
  #
1154
- RubyLint.global_scope.define_constant('Errno::EKEYREVOKED::Errno') do |klass|
1154
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EKEYREVOKED::Errno') do |klass|
1155
1155
  end
1156
1156
 
1157
1157
  ##
@@ -1159,7 +1159,7 @@ end
1159
1159
  # Created: 2013-04-01 18:33:53 +0200
1160
1160
  # Platform: rbx 2.0.0.rc1
1161
1161
  #
1162
- RubyLint.global_scope.define_constant('Errno::EKEYREVOKED::Strerror') do |klass|
1162
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EKEYREVOKED::Strerror') do |klass|
1163
1163
  end
1164
1164
 
1165
1165
  ##
@@ -1167,8 +1167,8 @@ end
1167
1167
  # Created: 2013-04-01 18:33:53 +0200
1168
1168
  # Platform: rbx 2.0.0.rc1
1169
1169
  #
1170
- RubyLint.global_scope.define_constant('Errno::EL2HLT') do |klass|
1171
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1170
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EL2HLT') do |klass|
1171
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1172
1172
  end
1173
1173
 
1174
1174
  ##
@@ -1176,7 +1176,7 @@ end
1176
1176
  # Created: 2013-04-01 18:33:53 +0200
1177
1177
  # Platform: rbx 2.0.0.rc1
1178
1178
  #
1179
- RubyLint.global_scope.define_constant('Errno::EL2HLT::Errno') do |klass|
1179
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EL2HLT::Errno') do |klass|
1180
1180
  end
1181
1181
 
1182
1182
  ##
@@ -1184,7 +1184,7 @@ end
1184
1184
  # Created: 2013-04-01 18:33:53 +0200
1185
1185
  # Platform: rbx 2.0.0.rc1
1186
1186
  #
1187
- RubyLint.global_scope.define_constant('Errno::EL2HLT::Strerror') do |klass|
1187
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EL2HLT::Strerror') do |klass|
1188
1188
  end
1189
1189
 
1190
1190
  ##
@@ -1192,8 +1192,8 @@ end
1192
1192
  # Created: 2013-04-01 18:33:53 +0200
1193
1193
  # Platform: rbx 2.0.0.rc1
1194
1194
  #
1195
- RubyLint.global_scope.define_constant('Errno::EL2NSYNC') do |klass|
1196
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1195
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EL2NSYNC') do |klass|
1196
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1197
1197
  end
1198
1198
 
1199
1199
  ##
@@ -1201,7 +1201,7 @@ end
1201
1201
  # Created: 2013-04-01 18:33:53 +0200
1202
1202
  # Platform: rbx 2.0.0.rc1
1203
1203
  #
1204
- RubyLint.global_scope.define_constant('Errno::EL2NSYNC::Errno') do |klass|
1204
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EL2NSYNC::Errno') do |klass|
1205
1205
  end
1206
1206
 
1207
1207
  ##
@@ -1209,7 +1209,7 @@ end
1209
1209
  # Created: 2013-04-01 18:33:53 +0200
1210
1210
  # Platform: rbx 2.0.0.rc1
1211
1211
  #
1212
- RubyLint.global_scope.define_constant('Errno::EL2NSYNC::Strerror') do |klass|
1212
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EL2NSYNC::Strerror') do |klass|
1213
1213
  end
1214
1214
 
1215
1215
  ##
@@ -1217,8 +1217,8 @@ end
1217
1217
  # Created: 2013-04-01 18:33:53 +0200
1218
1218
  # Platform: rbx 2.0.0.rc1
1219
1219
  #
1220
- RubyLint.global_scope.define_constant('Errno::EL3HLT') do |klass|
1221
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1220
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EL3HLT') do |klass|
1221
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1222
1222
  end
1223
1223
 
1224
1224
  ##
@@ -1226,7 +1226,7 @@ end
1226
1226
  # Created: 2013-04-01 18:33:53 +0200
1227
1227
  # Platform: rbx 2.0.0.rc1
1228
1228
  #
1229
- RubyLint.global_scope.define_constant('Errno::EL3HLT::Errno') do |klass|
1229
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EL3HLT::Errno') do |klass|
1230
1230
  end
1231
1231
 
1232
1232
  ##
@@ -1234,7 +1234,7 @@ end
1234
1234
  # Created: 2013-04-01 18:33:53 +0200
1235
1235
  # Platform: rbx 2.0.0.rc1
1236
1236
  #
1237
- RubyLint.global_scope.define_constant('Errno::EL3HLT::Strerror') do |klass|
1237
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EL3HLT::Strerror') do |klass|
1238
1238
  end
1239
1239
 
1240
1240
  ##
@@ -1242,8 +1242,8 @@ end
1242
1242
  # Created: 2013-04-01 18:33:53 +0200
1243
1243
  # Platform: rbx 2.0.0.rc1
1244
1244
  #
1245
- RubyLint.global_scope.define_constant('Errno::EL3RST') do |klass|
1246
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1245
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EL3RST') do |klass|
1246
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1247
1247
  end
1248
1248
 
1249
1249
  ##
@@ -1251,7 +1251,7 @@ end
1251
1251
  # Created: 2013-04-01 18:33:53 +0200
1252
1252
  # Platform: rbx 2.0.0.rc1
1253
1253
  #
1254
- RubyLint.global_scope.define_constant('Errno::EL3RST::Errno') do |klass|
1254
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EL3RST::Errno') do |klass|
1255
1255
  end
1256
1256
 
1257
1257
  ##
@@ -1259,7 +1259,7 @@ end
1259
1259
  # Created: 2013-04-01 18:33:53 +0200
1260
1260
  # Platform: rbx 2.0.0.rc1
1261
1261
  #
1262
- RubyLint.global_scope.define_constant('Errno::EL3RST::Strerror') do |klass|
1262
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EL3RST::Strerror') do |klass|
1263
1263
  end
1264
1264
 
1265
1265
  ##
@@ -1267,8 +1267,8 @@ end
1267
1267
  # Created: 2013-04-01 18:33:53 +0200
1268
1268
  # Platform: rbx 2.0.0.rc1
1269
1269
  #
1270
- RubyLint.global_scope.define_constant('Errno::ELIBACC') do |klass|
1271
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1270
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ELIBACC') do |klass|
1271
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1272
1272
  end
1273
1273
 
1274
1274
  ##
@@ -1276,7 +1276,7 @@ end
1276
1276
  # Created: 2013-04-01 18:33:53 +0200
1277
1277
  # Platform: rbx 2.0.0.rc1
1278
1278
  #
1279
- RubyLint.global_scope.define_constant('Errno::ELIBACC::Errno') do |klass|
1279
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ELIBACC::Errno') do |klass|
1280
1280
  end
1281
1281
 
1282
1282
  ##
@@ -1284,7 +1284,7 @@ end
1284
1284
  # Created: 2013-04-01 18:33:53 +0200
1285
1285
  # Platform: rbx 2.0.0.rc1
1286
1286
  #
1287
- RubyLint.global_scope.define_constant('Errno::ELIBACC::Strerror') do |klass|
1287
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ELIBACC::Strerror') do |klass|
1288
1288
  end
1289
1289
 
1290
1290
  ##
@@ -1292,8 +1292,8 @@ end
1292
1292
  # Created: 2013-04-01 18:33:53 +0200
1293
1293
  # Platform: rbx 2.0.0.rc1
1294
1294
  #
1295
- RubyLint.global_scope.define_constant('Errno::ELIBBAD') do |klass|
1296
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1295
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ELIBBAD') do |klass|
1296
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1297
1297
  end
1298
1298
 
1299
1299
  ##
@@ -1301,7 +1301,7 @@ end
1301
1301
  # Created: 2013-04-01 18:33:53 +0200
1302
1302
  # Platform: rbx 2.0.0.rc1
1303
1303
  #
1304
- RubyLint.global_scope.define_constant('Errno::ELIBBAD::Errno') do |klass|
1304
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ELIBBAD::Errno') do |klass|
1305
1305
  end
1306
1306
 
1307
1307
  ##
@@ -1309,7 +1309,7 @@ end
1309
1309
  # Created: 2013-04-01 18:33:53 +0200
1310
1310
  # Platform: rbx 2.0.0.rc1
1311
1311
  #
1312
- RubyLint.global_scope.define_constant('Errno::ELIBBAD::Strerror') do |klass|
1312
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ELIBBAD::Strerror') do |klass|
1313
1313
  end
1314
1314
 
1315
1315
  ##
@@ -1317,8 +1317,8 @@ end
1317
1317
  # Created: 2013-04-01 18:33:53 +0200
1318
1318
  # Platform: rbx 2.0.0.rc1
1319
1319
  #
1320
- RubyLint.global_scope.define_constant('Errno::ELIBEXEC') do |klass|
1321
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1320
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ELIBEXEC') do |klass|
1321
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1322
1322
  end
1323
1323
 
1324
1324
  ##
@@ -1326,7 +1326,7 @@ end
1326
1326
  # Created: 2013-04-01 18:33:53 +0200
1327
1327
  # Platform: rbx 2.0.0.rc1
1328
1328
  #
1329
- RubyLint.global_scope.define_constant('Errno::ELIBEXEC::Errno') do |klass|
1329
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ELIBEXEC::Errno') do |klass|
1330
1330
  end
1331
1331
 
1332
1332
  ##
@@ -1334,7 +1334,7 @@ end
1334
1334
  # Created: 2013-04-01 18:33:53 +0200
1335
1335
  # Platform: rbx 2.0.0.rc1
1336
1336
  #
1337
- RubyLint.global_scope.define_constant('Errno::ELIBEXEC::Strerror') do |klass|
1337
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ELIBEXEC::Strerror') do |klass|
1338
1338
  end
1339
1339
 
1340
1340
  ##
@@ -1342,8 +1342,8 @@ end
1342
1342
  # Created: 2013-04-01 18:33:53 +0200
1343
1343
  # Platform: rbx 2.0.0.rc1
1344
1344
  #
1345
- RubyLint.global_scope.define_constant('Errno::ELIBMAX') do |klass|
1346
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1345
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ELIBMAX') do |klass|
1346
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1347
1347
  end
1348
1348
 
1349
1349
  ##
@@ -1351,7 +1351,7 @@ end
1351
1351
  # Created: 2013-04-01 18:33:53 +0200
1352
1352
  # Platform: rbx 2.0.0.rc1
1353
1353
  #
1354
- RubyLint.global_scope.define_constant('Errno::ELIBMAX::Errno') do |klass|
1354
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ELIBMAX::Errno') do |klass|
1355
1355
  end
1356
1356
 
1357
1357
  ##
@@ -1359,7 +1359,7 @@ end
1359
1359
  # Created: 2013-04-01 18:33:53 +0200
1360
1360
  # Platform: rbx 2.0.0.rc1
1361
1361
  #
1362
- RubyLint.global_scope.define_constant('Errno::ELIBMAX::Strerror') do |klass|
1362
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ELIBMAX::Strerror') do |klass|
1363
1363
  end
1364
1364
 
1365
1365
  ##
@@ -1367,8 +1367,8 @@ end
1367
1367
  # Created: 2013-04-01 18:33:53 +0200
1368
1368
  # Platform: rbx 2.0.0.rc1
1369
1369
  #
1370
- RubyLint.global_scope.define_constant('Errno::ELIBSCN') do |klass|
1371
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1370
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ELIBSCN') do |klass|
1371
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1372
1372
  end
1373
1373
 
1374
1374
  ##
@@ -1376,7 +1376,7 @@ end
1376
1376
  # Created: 2013-04-01 18:33:53 +0200
1377
1377
  # Platform: rbx 2.0.0.rc1
1378
1378
  #
1379
- RubyLint.global_scope.define_constant('Errno::ELIBSCN::Errno') do |klass|
1379
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ELIBSCN::Errno') do |klass|
1380
1380
  end
1381
1381
 
1382
1382
  ##
@@ -1384,7 +1384,7 @@ end
1384
1384
  # Created: 2013-04-01 18:33:53 +0200
1385
1385
  # Platform: rbx 2.0.0.rc1
1386
1386
  #
1387
- RubyLint.global_scope.define_constant('Errno::ELIBSCN::Strerror') do |klass|
1387
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ELIBSCN::Strerror') do |klass|
1388
1388
  end
1389
1389
 
1390
1390
  ##
@@ -1392,8 +1392,8 @@ end
1392
1392
  # Created: 2013-04-01 18:33:53 +0200
1393
1393
  # Platform: rbx 2.0.0.rc1
1394
1394
  #
1395
- RubyLint.global_scope.define_constant('Errno::ELNRNG') do |klass|
1396
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1395
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ELNRNG') do |klass|
1396
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1397
1397
  end
1398
1398
 
1399
1399
  ##
@@ -1401,7 +1401,7 @@ end
1401
1401
  # Created: 2013-04-01 18:33:53 +0200
1402
1402
  # Platform: rbx 2.0.0.rc1
1403
1403
  #
1404
- RubyLint.global_scope.define_constant('Errno::ELNRNG::Errno') do |klass|
1404
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ELNRNG::Errno') do |klass|
1405
1405
  end
1406
1406
 
1407
1407
  ##
@@ -1409,7 +1409,7 @@ end
1409
1409
  # Created: 2013-04-01 18:33:53 +0200
1410
1410
  # Platform: rbx 2.0.0.rc1
1411
1411
  #
1412
- RubyLint.global_scope.define_constant('Errno::ELNRNG::Strerror') do |klass|
1412
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ELNRNG::Strerror') do |klass|
1413
1413
  end
1414
1414
 
1415
1415
  ##
@@ -1417,8 +1417,8 @@ end
1417
1417
  # Created: 2013-04-01 18:33:53 +0200
1418
1418
  # Platform: rbx 2.0.0.rc1
1419
1419
  #
1420
- RubyLint.global_scope.define_constant('Errno::ELOOP') do |klass|
1421
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1420
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ELOOP') do |klass|
1421
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1422
1422
  end
1423
1423
 
1424
1424
  ##
@@ -1426,7 +1426,7 @@ end
1426
1426
  # Created: 2013-04-01 18:33:53 +0200
1427
1427
  # Platform: rbx 2.0.0.rc1
1428
1428
  #
1429
- RubyLint.global_scope.define_constant('Errno::ELOOP::Errno') do |klass|
1429
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ELOOP::Errno') do |klass|
1430
1430
  end
1431
1431
 
1432
1432
  ##
@@ -1434,7 +1434,7 @@ end
1434
1434
  # Created: 2013-04-01 18:33:53 +0200
1435
1435
  # Platform: rbx 2.0.0.rc1
1436
1436
  #
1437
- RubyLint.global_scope.define_constant('Errno::ELOOP::Strerror') do |klass|
1437
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ELOOP::Strerror') do |klass|
1438
1438
  end
1439
1439
 
1440
1440
  ##
@@ -1442,8 +1442,8 @@ end
1442
1442
  # Created: 2013-04-01 18:33:53 +0200
1443
1443
  # Platform: rbx 2.0.0.rc1
1444
1444
  #
1445
- RubyLint.global_scope.define_constant('Errno::EMEDIUMTYPE') do |klass|
1446
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1445
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EMEDIUMTYPE') do |klass|
1446
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1447
1447
  end
1448
1448
 
1449
1449
  ##
@@ -1451,7 +1451,7 @@ end
1451
1451
  # Created: 2013-04-01 18:33:53 +0200
1452
1452
  # Platform: rbx 2.0.0.rc1
1453
1453
  #
1454
- RubyLint.global_scope.define_constant('Errno::EMEDIUMTYPE::Errno') do |klass|
1454
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EMEDIUMTYPE::Errno') do |klass|
1455
1455
  end
1456
1456
 
1457
1457
  ##
@@ -1459,7 +1459,7 @@ end
1459
1459
  # Created: 2013-04-01 18:33:53 +0200
1460
1460
  # Platform: rbx 2.0.0.rc1
1461
1461
  #
1462
- RubyLint.global_scope.define_constant('Errno::EMEDIUMTYPE::Strerror') do |klass|
1462
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EMEDIUMTYPE::Strerror') do |klass|
1463
1463
  end
1464
1464
 
1465
1465
  ##
@@ -1467,8 +1467,8 @@ end
1467
1467
  # Created: 2013-04-01 18:33:53 +0200
1468
1468
  # Platform: rbx 2.0.0.rc1
1469
1469
  #
1470
- RubyLint.global_scope.define_constant('Errno::EMFILE') do |klass|
1471
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1470
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EMFILE') do |klass|
1471
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1472
1472
  end
1473
1473
 
1474
1474
  ##
@@ -1476,7 +1476,7 @@ end
1476
1476
  # Created: 2013-04-01 18:33:53 +0200
1477
1477
  # Platform: rbx 2.0.0.rc1
1478
1478
  #
1479
- RubyLint.global_scope.define_constant('Errno::EMFILE::Errno') do |klass|
1479
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EMFILE::Errno') do |klass|
1480
1480
  end
1481
1481
 
1482
1482
  ##
@@ -1484,7 +1484,7 @@ end
1484
1484
  # Created: 2013-04-01 18:33:53 +0200
1485
1485
  # Platform: rbx 2.0.0.rc1
1486
1486
  #
1487
- RubyLint.global_scope.define_constant('Errno::EMFILE::Strerror') do |klass|
1487
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EMFILE::Strerror') do |klass|
1488
1488
  end
1489
1489
 
1490
1490
  ##
@@ -1492,8 +1492,8 @@ end
1492
1492
  # Created: 2013-04-01 18:33:53 +0200
1493
1493
  # Platform: rbx 2.0.0.rc1
1494
1494
  #
1495
- RubyLint.global_scope.define_constant('Errno::EMLINK') do |klass|
1496
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1495
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EMLINK') do |klass|
1496
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1497
1497
  end
1498
1498
 
1499
1499
  ##
@@ -1501,7 +1501,7 @@ end
1501
1501
  # Created: 2013-04-01 18:33:53 +0200
1502
1502
  # Platform: rbx 2.0.0.rc1
1503
1503
  #
1504
- RubyLint.global_scope.define_constant('Errno::EMLINK::Errno') do |klass|
1504
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EMLINK::Errno') do |klass|
1505
1505
  end
1506
1506
 
1507
1507
  ##
@@ -1509,7 +1509,7 @@ end
1509
1509
  # Created: 2013-04-01 18:33:53 +0200
1510
1510
  # Platform: rbx 2.0.0.rc1
1511
1511
  #
1512
- RubyLint.global_scope.define_constant('Errno::EMLINK::Strerror') do |klass|
1512
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EMLINK::Strerror') do |klass|
1513
1513
  end
1514
1514
 
1515
1515
  ##
@@ -1517,8 +1517,8 @@ end
1517
1517
  # Created: 2013-04-01 18:33:53 +0200
1518
1518
  # Platform: rbx 2.0.0.rc1
1519
1519
  #
1520
- RubyLint.global_scope.define_constant('Errno::EMSGSIZE') do |klass|
1521
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1520
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EMSGSIZE') do |klass|
1521
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1522
1522
  end
1523
1523
 
1524
1524
  ##
@@ -1526,7 +1526,7 @@ end
1526
1526
  # Created: 2013-04-01 18:33:53 +0200
1527
1527
  # Platform: rbx 2.0.0.rc1
1528
1528
  #
1529
- RubyLint.global_scope.define_constant('Errno::EMSGSIZE::Errno') do |klass|
1529
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EMSGSIZE::Errno') do |klass|
1530
1530
  end
1531
1531
 
1532
1532
  ##
@@ -1534,7 +1534,7 @@ end
1534
1534
  # Created: 2013-04-01 18:33:53 +0200
1535
1535
  # Platform: rbx 2.0.0.rc1
1536
1536
  #
1537
- RubyLint.global_scope.define_constant('Errno::EMSGSIZE::Strerror') do |klass|
1537
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EMSGSIZE::Strerror') do |klass|
1538
1538
  end
1539
1539
 
1540
1540
  ##
@@ -1542,8 +1542,8 @@ end
1542
1542
  # Created: 2013-04-01 18:33:53 +0200
1543
1543
  # Platform: rbx 2.0.0.rc1
1544
1544
  #
1545
- RubyLint.global_scope.define_constant('Errno::EMULTIHOP') do |klass|
1546
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1545
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EMULTIHOP') do |klass|
1546
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1547
1547
  end
1548
1548
 
1549
1549
  ##
@@ -1551,7 +1551,7 @@ end
1551
1551
  # Created: 2013-04-01 18:33:53 +0200
1552
1552
  # Platform: rbx 2.0.0.rc1
1553
1553
  #
1554
- RubyLint.global_scope.define_constant('Errno::EMULTIHOP::Errno') do |klass|
1554
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EMULTIHOP::Errno') do |klass|
1555
1555
  end
1556
1556
 
1557
1557
  ##
@@ -1559,7 +1559,7 @@ end
1559
1559
  # Created: 2013-04-01 18:33:53 +0200
1560
1560
  # Platform: rbx 2.0.0.rc1
1561
1561
  #
1562
- RubyLint.global_scope.define_constant('Errno::EMULTIHOP::Strerror') do |klass|
1562
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EMULTIHOP::Strerror') do |klass|
1563
1563
  end
1564
1564
 
1565
1565
  ##
@@ -1567,8 +1567,8 @@ end
1567
1567
  # Created: 2013-04-01 18:33:53 +0200
1568
1568
  # Platform: rbx 2.0.0.rc1
1569
1569
  #
1570
- RubyLint.global_scope.define_constant('Errno::ENAMETOOLONG') do |klass|
1571
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1570
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENAMETOOLONG') do |klass|
1571
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1572
1572
  end
1573
1573
 
1574
1574
  ##
@@ -1576,7 +1576,7 @@ end
1576
1576
  # Created: 2013-04-01 18:33:53 +0200
1577
1577
  # Platform: rbx 2.0.0.rc1
1578
1578
  #
1579
- RubyLint.global_scope.define_constant('Errno::ENAMETOOLONG::Errno') do |klass|
1579
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENAMETOOLONG::Errno') do |klass|
1580
1580
  end
1581
1581
 
1582
1582
  ##
@@ -1584,7 +1584,7 @@ end
1584
1584
  # Created: 2013-04-01 18:33:53 +0200
1585
1585
  # Platform: rbx 2.0.0.rc1
1586
1586
  #
1587
- RubyLint.global_scope.define_constant('Errno::ENAMETOOLONG::Strerror') do |klass|
1587
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENAMETOOLONG::Strerror') do |klass|
1588
1588
  end
1589
1589
 
1590
1590
  ##
@@ -1592,8 +1592,8 @@ end
1592
1592
  # Created: 2013-04-01 18:33:53 +0200
1593
1593
  # Platform: rbx 2.0.0.rc1
1594
1594
  #
1595
- RubyLint.global_scope.define_constant('Errno::ENAVAIL') do |klass|
1596
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1595
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENAVAIL') do |klass|
1596
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1597
1597
  end
1598
1598
 
1599
1599
  ##
@@ -1601,7 +1601,7 @@ end
1601
1601
  # Created: 2013-04-01 18:33:53 +0200
1602
1602
  # Platform: rbx 2.0.0.rc1
1603
1603
  #
1604
- RubyLint.global_scope.define_constant('Errno::ENAVAIL::Errno') do |klass|
1604
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENAVAIL::Errno') do |klass|
1605
1605
  end
1606
1606
 
1607
1607
  ##
@@ -1609,7 +1609,7 @@ end
1609
1609
  # Created: 2013-04-01 18:33:53 +0200
1610
1610
  # Platform: rbx 2.0.0.rc1
1611
1611
  #
1612
- RubyLint.global_scope.define_constant('Errno::ENAVAIL::Strerror') do |klass|
1612
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENAVAIL::Strerror') do |klass|
1613
1613
  end
1614
1614
 
1615
1615
  ##
@@ -1617,8 +1617,8 @@ end
1617
1617
  # Created: 2013-04-01 18:33:53 +0200
1618
1618
  # Platform: rbx 2.0.0.rc1
1619
1619
  #
1620
- RubyLint.global_scope.define_constant('Errno::ENETDOWN') do |klass|
1621
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1620
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENETDOWN') do |klass|
1621
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1622
1622
  end
1623
1623
 
1624
1624
  ##
@@ -1626,7 +1626,7 @@ end
1626
1626
  # Created: 2013-04-01 18:33:53 +0200
1627
1627
  # Platform: rbx 2.0.0.rc1
1628
1628
  #
1629
- RubyLint.global_scope.define_constant('Errno::ENETDOWN::Errno') do |klass|
1629
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENETDOWN::Errno') do |klass|
1630
1630
  end
1631
1631
 
1632
1632
  ##
@@ -1634,7 +1634,7 @@ end
1634
1634
  # Created: 2013-04-01 18:33:53 +0200
1635
1635
  # Platform: rbx 2.0.0.rc1
1636
1636
  #
1637
- RubyLint.global_scope.define_constant('Errno::ENETDOWN::Strerror') do |klass|
1637
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENETDOWN::Strerror') do |klass|
1638
1638
  end
1639
1639
 
1640
1640
  ##
@@ -1642,8 +1642,8 @@ end
1642
1642
  # Created: 2013-04-01 18:33:53 +0200
1643
1643
  # Platform: rbx 2.0.0.rc1
1644
1644
  #
1645
- RubyLint.global_scope.define_constant('Errno::ENETRESET') do |klass|
1646
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1645
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENETRESET') do |klass|
1646
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1647
1647
  end
1648
1648
 
1649
1649
  ##
@@ -1651,7 +1651,7 @@ end
1651
1651
  # Created: 2013-04-01 18:33:53 +0200
1652
1652
  # Platform: rbx 2.0.0.rc1
1653
1653
  #
1654
- RubyLint.global_scope.define_constant('Errno::ENETRESET::Errno') do |klass|
1654
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENETRESET::Errno') do |klass|
1655
1655
  end
1656
1656
 
1657
1657
  ##
@@ -1659,7 +1659,7 @@ end
1659
1659
  # Created: 2013-04-01 18:33:53 +0200
1660
1660
  # Platform: rbx 2.0.0.rc1
1661
1661
  #
1662
- RubyLint.global_scope.define_constant('Errno::ENETRESET::Strerror') do |klass|
1662
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENETRESET::Strerror') do |klass|
1663
1663
  end
1664
1664
 
1665
1665
  ##
@@ -1667,8 +1667,8 @@ end
1667
1667
  # Created: 2013-04-01 18:33:53 +0200
1668
1668
  # Platform: rbx 2.0.0.rc1
1669
1669
  #
1670
- RubyLint.global_scope.define_constant('Errno::ENETUNREACH') do |klass|
1671
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1670
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENETUNREACH') do |klass|
1671
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1672
1672
  end
1673
1673
 
1674
1674
  ##
@@ -1676,7 +1676,7 @@ end
1676
1676
  # Created: 2013-04-01 18:33:53 +0200
1677
1677
  # Platform: rbx 2.0.0.rc1
1678
1678
  #
1679
- RubyLint.global_scope.define_constant('Errno::ENETUNREACH::Errno') do |klass|
1679
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENETUNREACH::Errno') do |klass|
1680
1680
  end
1681
1681
 
1682
1682
  ##
@@ -1684,7 +1684,7 @@ end
1684
1684
  # Created: 2013-04-01 18:33:53 +0200
1685
1685
  # Platform: rbx 2.0.0.rc1
1686
1686
  #
1687
- RubyLint.global_scope.define_constant('Errno::ENETUNREACH::Strerror') do |klass|
1687
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENETUNREACH::Strerror') do |klass|
1688
1688
  end
1689
1689
 
1690
1690
  ##
@@ -1692,8 +1692,8 @@ end
1692
1692
  # Created: 2013-04-01 18:33:53 +0200
1693
1693
  # Platform: rbx 2.0.0.rc1
1694
1694
  #
1695
- RubyLint.global_scope.define_constant('Errno::ENFILE') do |klass|
1696
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1695
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENFILE') do |klass|
1696
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1697
1697
  end
1698
1698
 
1699
1699
  ##
@@ -1701,7 +1701,7 @@ end
1701
1701
  # Created: 2013-04-01 18:33:53 +0200
1702
1702
  # Platform: rbx 2.0.0.rc1
1703
1703
  #
1704
- RubyLint.global_scope.define_constant('Errno::ENFILE::Errno') do |klass|
1704
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENFILE::Errno') do |klass|
1705
1705
  end
1706
1706
 
1707
1707
  ##
@@ -1709,7 +1709,7 @@ end
1709
1709
  # Created: 2013-04-01 18:33:53 +0200
1710
1710
  # Platform: rbx 2.0.0.rc1
1711
1711
  #
1712
- RubyLint.global_scope.define_constant('Errno::ENFILE::Strerror') do |klass|
1712
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENFILE::Strerror') do |klass|
1713
1713
  end
1714
1714
 
1715
1715
  ##
@@ -1717,8 +1717,8 @@ end
1717
1717
  # Created: 2013-04-01 18:33:53 +0200
1718
1718
  # Platform: rbx 2.0.0.rc1
1719
1719
  #
1720
- RubyLint.global_scope.define_constant('Errno::ENOANO') do |klass|
1721
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1720
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOANO') do |klass|
1721
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1722
1722
  end
1723
1723
 
1724
1724
  ##
@@ -1726,7 +1726,7 @@ end
1726
1726
  # Created: 2013-04-01 18:33:53 +0200
1727
1727
  # Platform: rbx 2.0.0.rc1
1728
1728
  #
1729
- RubyLint.global_scope.define_constant('Errno::ENOANO::Errno') do |klass|
1729
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOANO::Errno') do |klass|
1730
1730
  end
1731
1731
 
1732
1732
  ##
@@ -1734,7 +1734,7 @@ end
1734
1734
  # Created: 2013-04-01 18:33:53 +0200
1735
1735
  # Platform: rbx 2.0.0.rc1
1736
1736
  #
1737
- RubyLint.global_scope.define_constant('Errno::ENOANO::Strerror') do |klass|
1737
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOANO::Strerror') do |klass|
1738
1738
  end
1739
1739
 
1740
1740
  ##
@@ -1742,8 +1742,8 @@ end
1742
1742
  # Created: 2013-04-01 18:33:53 +0200
1743
1743
  # Platform: rbx 2.0.0.rc1
1744
1744
  #
1745
- RubyLint.global_scope.define_constant('Errno::ENOBUFS') do |klass|
1746
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1745
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOBUFS') do |klass|
1746
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1747
1747
  end
1748
1748
 
1749
1749
  ##
@@ -1751,7 +1751,7 @@ end
1751
1751
  # Created: 2013-04-01 18:33:53 +0200
1752
1752
  # Platform: rbx 2.0.0.rc1
1753
1753
  #
1754
- RubyLint.global_scope.define_constant('Errno::ENOBUFS::Errno') do |klass|
1754
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOBUFS::Errno') do |klass|
1755
1755
  end
1756
1756
 
1757
1757
  ##
@@ -1759,7 +1759,7 @@ end
1759
1759
  # Created: 2013-04-01 18:33:53 +0200
1760
1760
  # Platform: rbx 2.0.0.rc1
1761
1761
  #
1762
- RubyLint.global_scope.define_constant('Errno::ENOBUFS::Strerror') do |klass|
1762
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOBUFS::Strerror') do |klass|
1763
1763
  end
1764
1764
 
1765
1765
  ##
@@ -1767,8 +1767,8 @@ end
1767
1767
  # Created: 2013-04-01 18:33:53 +0200
1768
1768
  # Platform: rbx 2.0.0.rc1
1769
1769
  #
1770
- RubyLint.global_scope.define_constant('Errno::ENOCSI') do |klass|
1771
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1770
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOCSI') do |klass|
1771
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1772
1772
  end
1773
1773
 
1774
1774
  ##
@@ -1776,7 +1776,7 @@ end
1776
1776
  # Created: 2013-04-01 18:33:53 +0200
1777
1777
  # Platform: rbx 2.0.0.rc1
1778
1778
  #
1779
- RubyLint.global_scope.define_constant('Errno::ENOCSI::Errno') do |klass|
1779
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOCSI::Errno') do |klass|
1780
1780
  end
1781
1781
 
1782
1782
  ##
@@ -1784,7 +1784,7 @@ end
1784
1784
  # Created: 2013-04-01 18:33:53 +0200
1785
1785
  # Platform: rbx 2.0.0.rc1
1786
1786
  #
1787
- RubyLint.global_scope.define_constant('Errno::ENOCSI::Strerror') do |klass|
1787
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOCSI::Strerror') do |klass|
1788
1788
  end
1789
1789
 
1790
1790
  ##
@@ -1792,8 +1792,8 @@ end
1792
1792
  # Created: 2013-04-01 18:33:53 +0200
1793
1793
  # Platform: rbx 2.0.0.rc1
1794
1794
  #
1795
- RubyLint.global_scope.define_constant('Errno::ENODATA') do |klass|
1796
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1795
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENODATA') do |klass|
1796
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1797
1797
  end
1798
1798
 
1799
1799
  ##
@@ -1801,7 +1801,7 @@ end
1801
1801
  # Created: 2013-04-01 18:33:53 +0200
1802
1802
  # Platform: rbx 2.0.0.rc1
1803
1803
  #
1804
- RubyLint.global_scope.define_constant('Errno::ENODATA::Errno') do |klass|
1804
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENODATA::Errno') do |klass|
1805
1805
  end
1806
1806
 
1807
1807
  ##
@@ -1809,7 +1809,7 @@ end
1809
1809
  # Created: 2013-04-01 18:33:53 +0200
1810
1810
  # Platform: rbx 2.0.0.rc1
1811
1811
  #
1812
- RubyLint.global_scope.define_constant('Errno::ENODATA::Strerror') do |klass|
1812
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENODATA::Strerror') do |klass|
1813
1813
  end
1814
1814
 
1815
1815
  ##
@@ -1817,8 +1817,8 @@ end
1817
1817
  # Created: 2013-04-01 18:33:53 +0200
1818
1818
  # Platform: rbx 2.0.0.rc1
1819
1819
  #
1820
- RubyLint.global_scope.define_constant('Errno::ENODEV') do |klass|
1821
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1820
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENODEV') do |klass|
1821
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1822
1822
  end
1823
1823
 
1824
1824
  ##
@@ -1826,7 +1826,7 @@ end
1826
1826
  # Created: 2013-04-01 18:33:53 +0200
1827
1827
  # Platform: rbx 2.0.0.rc1
1828
1828
  #
1829
- RubyLint.global_scope.define_constant('Errno::ENODEV::Errno') do |klass|
1829
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENODEV::Errno') do |klass|
1830
1830
  end
1831
1831
 
1832
1832
  ##
@@ -1834,7 +1834,7 @@ end
1834
1834
  # Created: 2013-04-01 18:33:53 +0200
1835
1835
  # Platform: rbx 2.0.0.rc1
1836
1836
  #
1837
- RubyLint.global_scope.define_constant('Errno::ENODEV::Strerror') do |klass|
1837
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENODEV::Strerror') do |klass|
1838
1838
  end
1839
1839
 
1840
1840
  ##
@@ -1842,8 +1842,8 @@ end
1842
1842
  # Created: 2013-04-01 18:33:53 +0200
1843
1843
  # Platform: rbx 2.0.0.rc1
1844
1844
  #
1845
- RubyLint.global_scope.define_constant('Errno::ENOENT') do |klass|
1846
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1845
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOENT') do |klass|
1846
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1847
1847
  end
1848
1848
 
1849
1849
  ##
@@ -1851,7 +1851,7 @@ end
1851
1851
  # Created: 2013-04-01 18:33:53 +0200
1852
1852
  # Platform: rbx 2.0.0.rc1
1853
1853
  #
1854
- RubyLint.global_scope.define_constant('Errno::ENOENT::Errno') do |klass|
1854
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOENT::Errno') do |klass|
1855
1855
  end
1856
1856
 
1857
1857
  ##
@@ -1859,7 +1859,7 @@ end
1859
1859
  # Created: 2013-04-01 18:33:53 +0200
1860
1860
  # Platform: rbx 2.0.0.rc1
1861
1861
  #
1862
- RubyLint.global_scope.define_constant('Errno::ENOENT::Strerror') do |klass|
1862
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOENT::Strerror') do |klass|
1863
1863
  end
1864
1864
 
1865
1865
  ##
@@ -1867,8 +1867,8 @@ end
1867
1867
  # Created: 2013-04-01 18:33:53 +0200
1868
1868
  # Platform: rbx 2.0.0.rc1
1869
1869
  #
1870
- RubyLint.global_scope.define_constant('Errno::ENOEXEC') do |klass|
1871
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1870
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOEXEC') do |klass|
1871
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1872
1872
  end
1873
1873
 
1874
1874
  ##
@@ -1876,7 +1876,7 @@ end
1876
1876
  # Created: 2013-04-01 18:33:53 +0200
1877
1877
  # Platform: rbx 2.0.0.rc1
1878
1878
  #
1879
- RubyLint.global_scope.define_constant('Errno::ENOEXEC::Errno') do |klass|
1879
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOEXEC::Errno') do |klass|
1880
1880
  end
1881
1881
 
1882
1882
  ##
@@ -1884,7 +1884,7 @@ end
1884
1884
  # Created: 2013-04-01 18:33:53 +0200
1885
1885
  # Platform: rbx 2.0.0.rc1
1886
1886
  #
1887
- RubyLint.global_scope.define_constant('Errno::ENOEXEC::Strerror') do |klass|
1887
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOEXEC::Strerror') do |klass|
1888
1888
  end
1889
1889
 
1890
1890
  ##
@@ -1892,8 +1892,8 @@ end
1892
1892
  # Created: 2013-04-01 18:33:53 +0200
1893
1893
  # Platform: rbx 2.0.0.rc1
1894
1894
  #
1895
- RubyLint.global_scope.define_constant('Errno::ENOKEY') do |klass|
1896
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1895
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOKEY') do |klass|
1896
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1897
1897
  end
1898
1898
 
1899
1899
  ##
@@ -1901,7 +1901,7 @@ end
1901
1901
  # Created: 2013-04-01 18:33:53 +0200
1902
1902
  # Platform: rbx 2.0.0.rc1
1903
1903
  #
1904
- RubyLint.global_scope.define_constant('Errno::ENOKEY::Errno') do |klass|
1904
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOKEY::Errno') do |klass|
1905
1905
  end
1906
1906
 
1907
1907
  ##
@@ -1909,7 +1909,7 @@ end
1909
1909
  # Created: 2013-04-01 18:33:53 +0200
1910
1910
  # Platform: rbx 2.0.0.rc1
1911
1911
  #
1912
- RubyLint.global_scope.define_constant('Errno::ENOKEY::Strerror') do |klass|
1912
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOKEY::Strerror') do |klass|
1913
1913
  end
1914
1914
 
1915
1915
  ##
@@ -1917,8 +1917,8 @@ end
1917
1917
  # Created: 2013-04-01 18:33:53 +0200
1918
1918
  # Platform: rbx 2.0.0.rc1
1919
1919
  #
1920
- RubyLint.global_scope.define_constant('Errno::ENOLCK') do |klass|
1921
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1920
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOLCK') do |klass|
1921
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1922
1922
  end
1923
1923
 
1924
1924
  ##
@@ -1926,7 +1926,7 @@ end
1926
1926
  # Created: 2013-04-01 18:33:53 +0200
1927
1927
  # Platform: rbx 2.0.0.rc1
1928
1928
  #
1929
- RubyLint.global_scope.define_constant('Errno::ENOLCK::Errno') do |klass|
1929
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOLCK::Errno') do |klass|
1930
1930
  end
1931
1931
 
1932
1932
  ##
@@ -1934,7 +1934,7 @@ end
1934
1934
  # Created: 2013-04-01 18:33:53 +0200
1935
1935
  # Platform: rbx 2.0.0.rc1
1936
1936
  #
1937
- RubyLint.global_scope.define_constant('Errno::ENOLCK::Strerror') do |klass|
1937
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOLCK::Strerror') do |klass|
1938
1938
  end
1939
1939
 
1940
1940
  ##
@@ -1942,8 +1942,8 @@ end
1942
1942
  # Created: 2013-04-01 18:33:53 +0200
1943
1943
  # Platform: rbx 2.0.0.rc1
1944
1944
  #
1945
- RubyLint.global_scope.define_constant('Errno::ENOLINK') do |klass|
1946
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1945
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOLINK') do |klass|
1946
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1947
1947
  end
1948
1948
 
1949
1949
  ##
@@ -1951,7 +1951,7 @@ end
1951
1951
  # Created: 2013-04-01 18:33:53 +0200
1952
1952
  # Platform: rbx 2.0.0.rc1
1953
1953
  #
1954
- RubyLint.global_scope.define_constant('Errno::ENOLINK::Errno') do |klass|
1954
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOLINK::Errno') do |klass|
1955
1955
  end
1956
1956
 
1957
1957
  ##
@@ -1959,7 +1959,7 @@ end
1959
1959
  # Created: 2013-04-01 18:33:53 +0200
1960
1960
  # Platform: rbx 2.0.0.rc1
1961
1961
  #
1962
- RubyLint.global_scope.define_constant('Errno::ENOLINK::Strerror') do |klass|
1962
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOLINK::Strerror') do |klass|
1963
1963
  end
1964
1964
 
1965
1965
  ##
@@ -1967,8 +1967,8 @@ end
1967
1967
  # Created: 2013-04-01 18:33:53 +0200
1968
1968
  # Platform: rbx 2.0.0.rc1
1969
1969
  #
1970
- RubyLint.global_scope.define_constant('Errno::ENOMEDIUM') do |klass|
1971
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1970
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOMEDIUM') do |klass|
1971
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1972
1972
  end
1973
1973
 
1974
1974
  ##
@@ -1976,7 +1976,7 @@ end
1976
1976
  # Created: 2013-04-01 18:33:53 +0200
1977
1977
  # Platform: rbx 2.0.0.rc1
1978
1978
  #
1979
- RubyLint.global_scope.define_constant('Errno::ENOMEDIUM::Errno') do |klass|
1979
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOMEDIUM::Errno') do |klass|
1980
1980
  end
1981
1981
 
1982
1982
  ##
@@ -1984,7 +1984,7 @@ end
1984
1984
  # Created: 2013-04-01 18:33:53 +0200
1985
1985
  # Platform: rbx 2.0.0.rc1
1986
1986
  #
1987
- RubyLint.global_scope.define_constant('Errno::ENOMEDIUM::Strerror') do |klass|
1987
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOMEDIUM::Strerror') do |klass|
1988
1988
  end
1989
1989
 
1990
1990
  ##
@@ -1992,8 +1992,8 @@ end
1992
1992
  # Created: 2013-04-01 18:33:53 +0200
1993
1993
  # Platform: rbx 2.0.0.rc1
1994
1994
  #
1995
- RubyLint.global_scope.define_constant('Errno::ENOMEM') do |klass|
1996
- klass.inherits(RubyLint.global_constant('SystemCallError'))
1995
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOMEM') do |klass|
1996
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
1997
1997
  end
1998
1998
 
1999
1999
  ##
@@ -2001,7 +2001,7 @@ end
2001
2001
  # Created: 2013-04-01 18:33:53 +0200
2002
2002
  # Platform: rbx 2.0.0.rc1
2003
2003
  #
2004
- RubyLint.global_scope.define_constant('Errno::ENOMEM::Errno') do |klass|
2004
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOMEM::Errno') do |klass|
2005
2005
  end
2006
2006
 
2007
2007
  ##
@@ -2009,7 +2009,7 @@ end
2009
2009
  # Created: 2013-04-01 18:33:53 +0200
2010
2010
  # Platform: rbx 2.0.0.rc1
2011
2011
  #
2012
- RubyLint.global_scope.define_constant('Errno::ENOMEM::Strerror') do |klass|
2012
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOMEM::Strerror') do |klass|
2013
2013
  end
2014
2014
 
2015
2015
  ##
@@ -2017,8 +2017,8 @@ end
2017
2017
  # Created: 2013-04-01 18:33:53 +0200
2018
2018
  # Platform: rbx 2.0.0.rc1
2019
2019
  #
2020
- RubyLint.global_scope.define_constant('Errno::ENOMSG') do |klass|
2021
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2020
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOMSG') do |klass|
2021
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2022
2022
  end
2023
2023
 
2024
2024
  ##
@@ -2026,7 +2026,7 @@ end
2026
2026
  # Created: 2013-04-01 18:33:53 +0200
2027
2027
  # Platform: rbx 2.0.0.rc1
2028
2028
  #
2029
- RubyLint.global_scope.define_constant('Errno::ENOMSG::Errno') do |klass|
2029
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOMSG::Errno') do |klass|
2030
2030
  end
2031
2031
 
2032
2032
  ##
@@ -2034,7 +2034,7 @@ end
2034
2034
  # Created: 2013-04-01 18:33:53 +0200
2035
2035
  # Platform: rbx 2.0.0.rc1
2036
2036
  #
2037
- RubyLint.global_scope.define_constant('Errno::ENOMSG::Strerror') do |klass|
2037
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOMSG::Strerror') do |klass|
2038
2038
  end
2039
2039
 
2040
2040
  ##
@@ -2042,8 +2042,8 @@ end
2042
2042
  # Created: 2013-04-01 18:33:53 +0200
2043
2043
  # Platform: rbx 2.0.0.rc1
2044
2044
  #
2045
- RubyLint.global_scope.define_constant('Errno::ENONET') do |klass|
2046
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2045
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENONET') do |klass|
2046
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2047
2047
  end
2048
2048
 
2049
2049
  ##
@@ -2051,7 +2051,7 @@ end
2051
2051
  # Created: 2013-04-01 18:33:53 +0200
2052
2052
  # Platform: rbx 2.0.0.rc1
2053
2053
  #
2054
- RubyLint.global_scope.define_constant('Errno::ENONET::Errno') do |klass|
2054
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENONET::Errno') do |klass|
2055
2055
  end
2056
2056
 
2057
2057
  ##
@@ -2059,7 +2059,7 @@ end
2059
2059
  # Created: 2013-04-01 18:33:53 +0200
2060
2060
  # Platform: rbx 2.0.0.rc1
2061
2061
  #
2062
- RubyLint.global_scope.define_constant('Errno::ENONET::Strerror') do |klass|
2062
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENONET::Strerror') do |klass|
2063
2063
  end
2064
2064
 
2065
2065
  ##
@@ -2067,8 +2067,8 @@ end
2067
2067
  # Created: 2013-04-01 18:33:53 +0200
2068
2068
  # Platform: rbx 2.0.0.rc1
2069
2069
  #
2070
- RubyLint.global_scope.define_constant('Errno::ENOPKG') do |klass|
2071
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2070
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOPKG') do |klass|
2071
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2072
2072
  end
2073
2073
 
2074
2074
  ##
@@ -2076,7 +2076,7 @@ end
2076
2076
  # Created: 2013-04-01 18:33:53 +0200
2077
2077
  # Platform: rbx 2.0.0.rc1
2078
2078
  #
2079
- RubyLint.global_scope.define_constant('Errno::ENOPKG::Errno') do |klass|
2079
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOPKG::Errno') do |klass|
2080
2080
  end
2081
2081
 
2082
2082
  ##
@@ -2084,7 +2084,7 @@ end
2084
2084
  # Created: 2013-04-01 18:33:53 +0200
2085
2085
  # Platform: rbx 2.0.0.rc1
2086
2086
  #
2087
- RubyLint.global_scope.define_constant('Errno::ENOPKG::Strerror') do |klass|
2087
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOPKG::Strerror') do |klass|
2088
2088
  end
2089
2089
 
2090
2090
  ##
@@ -2092,8 +2092,8 @@ end
2092
2092
  # Created: 2013-04-01 18:33:53 +0200
2093
2093
  # Platform: rbx 2.0.0.rc1
2094
2094
  #
2095
- RubyLint.global_scope.define_constant('Errno::ENOPROTOOPT') do |klass|
2096
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2095
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOPROTOOPT') do |klass|
2096
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2097
2097
  end
2098
2098
 
2099
2099
  ##
@@ -2101,7 +2101,7 @@ end
2101
2101
  # Created: 2013-04-01 18:33:53 +0200
2102
2102
  # Platform: rbx 2.0.0.rc1
2103
2103
  #
2104
- RubyLint.global_scope.define_constant('Errno::ENOPROTOOPT::Errno') do |klass|
2104
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOPROTOOPT::Errno') do |klass|
2105
2105
  end
2106
2106
 
2107
2107
  ##
@@ -2109,7 +2109,7 @@ end
2109
2109
  # Created: 2013-04-01 18:33:53 +0200
2110
2110
  # Platform: rbx 2.0.0.rc1
2111
2111
  #
2112
- RubyLint.global_scope.define_constant('Errno::ENOPROTOOPT::Strerror') do |klass|
2112
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOPROTOOPT::Strerror') do |klass|
2113
2113
  end
2114
2114
 
2115
2115
  ##
@@ -2117,8 +2117,8 @@ end
2117
2117
  # Created: 2013-04-01 18:33:53 +0200
2118
2118
  # Platform: rbx 2.0.0.rc1
2119
2119
  #
2120
- RubyLint.global_scope.define_constant('Errno::ENOSPC') do |klass|
2121
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2120
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOSPC') do |klass|
2121
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2122
2122
  end
2123
2123
 
2124
2124
  ##
@@ -2126,7 +2126,7 @@ end
2126
2126
  # Created: 2013-04-01 18:33:53 +0200
2127
2127
  # Platform: rbx 2.0.0.rc1
2128
2128
  #
2129
- RubyLint.global_scope.define_constant('Errno::ENOSPC::Errno') do |klass|
2129
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOSPC::Errno') do |klass|
2130
2130
  end
2131
2131
 
2132
2132
  ##
@@ -2134,7 +2134,7 @@ end
2134
2134
  # Created: 2013-04-01 18:33:53 +0200
2135
2135
  # Platform: rbx 2.0.0.rc1
2136
2136
  #
2137
- RubyLint.global_scope.define_constant('Errno::ENOSPC::Strerror') do |klass|
2137
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOSPC::Strerror') do |klass|
2138
2138
  end
2139
2139
 
2140
2140
  ##
@@ -2142,8 +2142,8 @@ end
2142
2142
  # Created: 2013-04-01 18:33:53 +0200
2143
2143
  # Platform: rbx 2.0.0.rc1
2144
2144
  #
2145
- RubyLint.global_scope.define_constant('Errno::ENOSR') do |klass|
2146
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2145
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOSR') do |klass|
2146
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2147
2147
  end
2148
2148
 
2149
2149
  ##
@@ -2151,7 +2151,7 @@ end
2151
2151
  # Created: 2013-04-01 18:33:53 +0200
2152
2152
  # Platform: rbx 2.0.0.rc1
2153
2153
  #
2154
- RubyLint.global_scope.define_constant('Errno::ENOSR::Errno') do |klass|
2154
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOSR::Errno') do |klass|
2155
2155
  end
2156
2156
 
2157
2157
  ##
@@ -2159,7 +2159,7 @@ end
2159
2159
  # Created: 2013-04-01 18:33:53 +0200
2160
2160
  # Platform: rbx 2.0.0.rc1
2161
2161
  #
2162
- RubyLint.global_scope.define_constant('Errno::ENOSR::Strerror') do |klass|
2162
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOSR::Strerror') do |klass|
2163
2163
  end
2164
2164
 
2165
2165
  ##
@@ -2167,8 +2167,8 @@ end
2167
2167
  # Created: 2013-04-01 18:33:53 +0200
2168
2168
  # Platform: rbx 2.0.0.rc1
2169
2169
  #
2170
- RubyLint.global_scope.define_constant('Errno::ENOSTR') do |klass|
2171
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2170
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOSTR') do |klass|
2171
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2172
2172
  end
2173
2173
 
2174
2174
  ##
@@ -2176,7 +2176,7 @@ end
2176
2176
  # Created: 2013-04-01 18:33:53 +0200
2177
2177
  # Platform: rbx 2.0.0.rc1
2178
2178
  #
2179
- RubyLint.global_scope.define_constant('Errno::ENOSTR::Errno') do |klass|
2179
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOSTR::Errno') do |klass|
2180
2180
  end
2181
2181
 
2182
2182
  ##
@@ -2184,7 +2184,7 @@ end
2184
2184
  # Created: 2013-04-01 18:33:53 +0200
2185
2185
  # Platform: rbx 2.0.0.rc1
2186
2186
  #
2187
- RubyLint.global_scope.define_constant('Errno::ENOSTR::Strerror') do |klass|
2187
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOSTR::Strerror') do |klass|
2188
2188
  end
2189
2189
 
2190
2190
  ##
@@ -2192,8 +2192,8 @@ end
2192
2192
  # Created: 2013-04-01 18:33:53 +0200
2193
2193
  # Platform: rbx 2.0.0.rc1
2194
2194
  #
2195
- RubyLint.global_scope.define_constant('Errno::ENOSYS') do |klass|
2196
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2195
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOSYS') do |klass|
2196
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2197
2197
  end
2198
2198
 
2199
2199
  ##
@@ -2201,7 +2201,7 @@ end
2201
2201
  # Created: 2013-04-01 18:33:53 +0200
2202
2202
  # Platform: rbx 2.0.0.rc1
2203
2203
  #
2204
- RubyLint.global_scope.define_constant('Errno::ENOSYS::Errno') do |klass|
2204
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOSYS::Errno') do |klass|
2205
2205
  end
2206
2206
 
2207
2207
  ##
@@ -2209,7 +2209,7 @@ end
2209
2209
  # Created: 2013-04-01 18:33:53 +0200
2210
2210
  # Platform: rbx 2.0.0.rc1
2211
2211
  #
2212
- RubyLint.global_scope.define_constant('Errno::ENOSYS::Strerror') do |klass|
2212
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOSYS::Strerror') do |klass|
2213
2213
  end
2214
2214
 
2215
2215
  ##
@@ -2217,8 +2217,8 @@ end
2217
2217
  # Created: 2013-04-01 18:33:53 +0200
2218
2218
  # Platform: rbx 2.0.0.rc1
2219
2219
  #
2220
- RubyLint.global_scope.define_constant('Errno::ENOTBLK') do |klass|
2221
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2220
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTBLK') do |klass|
2221
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2222
2222
  end
2223
2223
 
2224
2224
  ##
@@ -2226,7 +2226,7 @@ end
2226
2226
  # Created: 2013-04-01 18:33:53 +0200
2227
2227
  # Platform: rbx 2.0.0.rc1
2228
2228
  #
2229
- RubyLint.global_scope.define_constant('Errno::ENOTBLK::Errno') do |klass|
2229
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTBLK::Errno') do |klass|
2230
2230
  end
2231
2231
 
2232
2232
  ##
@@ -2234,7 +2234,7 @@ end
2234
2234
  # Created: 2013-04-01 18:33:53 +0200
2235
2235
  # Platform: rbx 2.0.0.rc1
2236
2236
  #
2237
- RubyLint.global_scope.define_constant('Errno::ENOTBLK::Strerror') do |klass|
2237
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTBLK::Strerror') do |klass|
2238
2238
  end
2239
2239
 
2240
2240
  ##
@@ -2242,8 +2242,8 @@ end
2242
2242
  # Created: 2013-04-01 18:33:53 +0200
2243
2243
  # Platform: rbx 2.0.0.rc1
2244
2244
  #
2245
- RubyLint.global_scope.define_constant('Errno::ENOTCONN') do |klass|
2246
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2245
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTCONN') do |klass|
2246
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2247
2247
  end
2248
2248
 
2249
2249
  ##
@@ -2251,7 +2251,7 @@ end
2251
2251
  # Created: 2013-04-01 18:33:53 +0200
2252
2252
  # Platform: rbx 2.0.0.rc1
2253
2253
  #
2254
- RubyLint.global_scope.define_constant('Errno::ENOTCONN::Errno') do |klass|
2254
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTCONN::Errno') do |klass|
2255
2255
  end
2256
2256
 
2257
2257
  ##
@@ -2259,7 +2259,7 @@ end
2259
2259
  # Created: 2013-04-01 18:33:53 +0200
2260
2260
  # Platform: rbx 2.0.0.rc1
2261
2261
  #
2262
- RubyLint.global_scope.define_constant('Errno::ENOTCONN::Strerror') do |klass|
2262
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTCONN::Strerror') do |klass|
2263
2263
  end
2264
2264
 
2265
2265
  ##
@@ -2267,8 +2267,8 @@ end
2267
2267
  # Created: 2013-04-01 18:33:53 +0200
2268
2268
  # Platform: rbx 2.0.0.rc1
2269
2269
  #
2270
- RubyLint.global_scope.define_constant('Errno::ENOTDIR') do |klass|
2271
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2270
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTDIR') do |klass|
2271
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2272
2272
  end
2273
2273
 
2274
2274
  ##
@@ -2276,7 +2276,7 @@ end
2276
2276
  # Created: 2013-04-01 18:33:53 +0200
2277
2277
  # Platform: rbx 2.0.0.rc1
2278
2278
  #
2279
- RubyLint.global_scope.define_constant('Errno::ENOTDIR::Errno') do |klass|
2279
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTDIR::Errno') do |klass|
2280
2280
  end
2281
2281
 
2282
2282
  ##
@@ -2284,7 +2284,7 @@ end
2284
2284
  # Created: 2013-04-01 18:33:53 +0200
2285
2285
  # Platform: rbx 2.0.0.rc1
2286
2286
  #
2287
- RubyLint.global_scope.define_constant('Errno::ENOTDIR::Strerror') do |klass|
2287
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTDIR::Strerror') do |klass|
2288
2288
  end
2289
2289
 
2290
2290
  ##
@@ -2292,8 +2292,8 @@ end
2292
2292
  # Created: 2013-04-01 18:33:53 +0200
2293
2293
  # Platform: rbx 2.0.0.rc1
2294
2294
  #
2295
- RubyLint.global_scope.define_constant('Errno::ENOTEMPTY') do |klass|
2296
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2295
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTEMPTY') do |klass|
2296
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2297
2297
  end
2298
2298
 
2299
2299
  ##
@@ -2301,7 +2301,7 @@ end
2301
2301
  # Created: 2013-04-01 18:33:53 +0200
2302
2302
  # Platform: rbx 2.0.0.rc1
2303
2303
  #
2304
- RubyLint.global_scope.define_constant('Errno::ENOTEMPTY::Errno') do |klass|
2304
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTEMPTY::Errno') do |klass|
2305
2305
  end
2306
2306
 
2307
2307
  ##
@@ -2309,7 +2309,7 @@ end
2309
2309
  # Created: 2013-04-01 18:33:53 +0200
2310
2310
  # Platform: rbx 2.0.0.rc1
2311
2311
  #
2312
- RubyLint.global_scope.define_constant('Errno::ENOTEMPTY::Strerror') do |klass|
2312
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTEMPTY::Strerror') do |klass|
2313
2313
  end
2314
2314
 
2315
2315
  ##
@@ -2317,8 +2317,8 @@ end
2317
2317
  # Created: 2013-04-01 18:33:53 +0200
2318
2318
  # Platform: rbx 2.0.0.rc1
2319
2319
  #
2320
- RubyLint.global_scope.define_constant('Errno::ENOTNAM') do |klass|
2321
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2320
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTNAM') do |klass|
2321
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2322
2322
  end
2323
2323
 
2324
2324
  ##
@@ -2326,7 +2326,7 @@ end
2326
2326
  # Created: 2013-04-01 18:33:53 +0200
2327
2327
  # Platform: rbx 2.0.0.rc1
2328
2328
  #
2329
- RubyLint.global_scope.define_constant('Errno::ENOTNAM::Errno') do |klass|
2329
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTNAM::Errno') do |klass|
2330
2330
  end
2331
2331
 
2332
2332
  ##
@@ -2334,7 +2334,7 @@ end
2334
2334
  # Created: 2013-04-01 18:33:53 +0200
2335
2335
  # Platform: rbx 2.0.0.rc1
2336
2336
  #
2337
- RubyLint.global_scope.define_constant('Errno::ENOTNAM::Strerror') do |klass|
2337
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTNAM::Strerror') do |klass|
2338
2338
  end
2339
2339
 
2340
2340
  ##
@@ -2342,8 +2342,8 @@ end
2342
2342
  # Created: 2013-04-01 18:33:53 +0200
2343
2343
  # Platform: rbx 2.0.0.rc1
2344
2344
  #
2345
- RubyLint.global_scope.define_constant('Errno::ENOTRECOVERABLE') do |klass|
2346
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2345
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTRECOVERABLE') do |klass|
2346
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2347
2347
  end
2348
2348
 
2349
2349
  ##
@@ -2351,7 +2351,7 @@ end
2351
2351
  # Created: 2013-04-01 18:33:53 +0200
2352
2352
  # Platform: rbx 2.0.0.rc1
2353
2353
  #
2354
- RubyLint.global_scope.define_constant('Errno::ENOTRECOVERABLE::Errno') do |klass|
2354
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTRECOVERABLE::Errno') do |klass|
2355
2355
  end
2356
2356
 
2357
2357
  ##
@@ -2359,7 +2359,7 @@ end
2359
2359
  # Created: 2013-04-01 18:33:53 +0200
2360
2360
  # Platform: rbx 2.0.0.rc1
2361
2361
  #
2362
- RubyLint.global_scope.define_constant('Errno::ENOTRECOVERABLE::Strerror') do |klass|
2362
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTRECOVERABLE::Strerror') do |klass|
2363
2363
  end
2364
2364
 
2365
2365
  ##
@@ -2367,8 +2367,8 @@ end
2367
2367
  # Created: 2013-04-01 18:33:53 +0200
2368
2368
  # Platform: rbx 2.0.0.rc1
2369
2369
  #
2370
- RubyLint.global_scope.define_constant('Errno::ENOTSOCK') do |klass|
2371
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2370
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTSOCK') do |klass|
2371
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2372
2372
  end
2373
2373
 
2374
2374
  ##
@@ -2376,7 +2376,7 @@ end
2376
2376
  # Created: 2013-04-01 18:33:53 +0200
2377
2377
  # Platform: rbx 2.0.0.rc1
2378
2378
  #
2379
- RubyLint.global_scope.define_constant('Errno::ENOTSOCK::Errno') do |klass|
2379
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTSOCK::Errno') do |klass|
2380
2380
  end
2381
2381
 
2382
2382
  ##
@@ -2384,7 +2384,7 @@ end
2384
2384
  # Created: 2013-04-01 18:33:53 +0200
2385
2385
  # Platform: rbx 2.0.0.rc1
2386
2386
  #
2387
- RubyLint.global_scope.define_constant('Errno::ENOTSOCK::Strerror') do |klass|
2387
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTSOCK::Strerror') do |klass|
2388
2388
  end
2389
2389
 
2390
2390
  ##
@@ -2392,8 +2392,8 @@ end
2392
2392
  # Created: 2013-04-01 18:33:53 +0200
2393
2393
  # Platform: rbx 2.0.0.rc1
2394
2394
  #
2395
- RubyLint.global_scope.define_constant('Errno::ENOTTY') do |klass|
2396
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2395
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTTY') do |klass|
2396
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2397
2397
  end
2398
2398
 
2399
2399
  ##
@@ -2401,7 +2401,7 @@ end
2401
2401
  # Created: 2013-04-01 18:33:53 +0200
2402
2402
  # Platform: rbx 2.0.0.rc1
2403
2403
  #
2404
- RubyLint.global_scope.define_constant('Errno::ENOTTY::Errno') do |klass|
2404
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTTY::Errno') do |klass|
2405
2405
  end
2406
2406
 
2407
2407
  ##
@@ -2409,7 +2409,7 @@ end
2409
2409
  # Created: 2013-04-01 18:33:53 +0200
2410
2410
  # Platform: rbx 2.0.0.rc1
2411
2411
  #
2412
- RubyLint.global_scope.define_constant('Errno::ENOTTY::Strerror') do |klass|
2412
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTTY::Strerror') do |klass|
2413
2413
  end
2414
2414
 
2415
2415
  ##
@@ -2417,8 +2417,8 @@ end
2417
2417
  # Created: 2013-04-01 18:33:53 +0200
2418
2418
  # Platform: rbx 2.0.0.rc1
2419
2419
  #
2420
- RubyLint.global_scope.define_constant('Errno::ENOTUNIQ') do |klass|
2421
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2420
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTUNIQ') do |klass|
2421
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2422
2422
  end
2423
2423
 
2424
2424
  ##
@@ -2426,7 +2426,7 @@ end
2426
2426
  # Created: 2013-04-01 18:33:53 +0200
2427
2427
  # Platform: rbx 2.0.0.rc1
2428
2428
  #
2429
- RubyLint.global_scope.define_constant('Errno::ENOTUNIQ::Errno') do |klass|
2429
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTUNIQ::Errno') do |klass|
2430
2430
  end
2431
2431
 
2432
2432
  ##
@@ -2434,7 +2434,7 @@ end
2434
2434
  # Created: 2013-04-01 18:33:53 +0200
2435
2435
  # Platform: rbx 2.0.0.rc1
2436
2436
  #
2437
- RubyLint.global_scope.define_constant('Errno::ENOTUNIQ::Strerror') do |klass|
2437
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENOTUNIQ::Strerror') do |klass|
2438
2438
  end
2439
2439
 
2440
2440
  ##
@@ -2442,8 +2442,8 @@ end
2442
2442
  # Created: 2013-04-01 18:33:53 +0200
2443
2443
  # Platform: rbx 2.0.0.rc1
2444
2444
  #
2445
- RubyLint.global_scope.define_constant('Errno::ENXIO') do |klass|
2446
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2445
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENXIO') do |klass|
2446
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2447
2447
  end
2448
2448
 
2449
2449
  ##
@@ -2451,7 +2451,7 @@ end
2451
2451
  # Created: 2013-04-01 18:33:53 +0200
2452
2452
  # Platform: rbx 2.0.0.rc1
2453
2453
  #
2454
- RubyLint.global_scope.define_constant('Errno::ENXIO::Errno') do |klass|
2454
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENXIO::Errno') do |klass|
2455
2455
  end
2456
2456
 
2457
2457
  ##
@@ -2459,7 +2459,7 @@ end
2459
2459
  # Created: 2013-04-01 18:33:53 +0200
2460
2460
  # Platform: rbx 2.0.0.rc1
2461
2461
  #
2462
- RubyLint.global_scope.define_constant('Errno::ENXIO::Strerror') do |klass|
2462
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ENXIO::Strerror') do |klass|
2463
2463
  end
2464
2464
 
2465
2465
  ##
@@ -2467,8 +2467,8 @@ end
2467
2467
  # Created: 2013-04-01 18:33:53 +0200
2468
2468
  # Platform: rbx 2.0.0.rc1
2469
2469
  #
2470
- RubyLint.global_scope.define_constant('Errno::EOPNOTSUPP') do |klass|
2471
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2470
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EOPNOTSUPP') do |klass|
2471
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2472
2472
  end
2473
2473
 
2474
2474
  ##
@@ -2476,7 +2476,7 @@ end
2476
2476
  # Created: 2013-04-01 18:33:53 +0200
2477
2477
  # Platform: rbx 2.0.0.rc1
2478
2478
  #
2479
- RubyLint.global_scope.define_constant('Errno::EOPNOTSUPP::Errno') do |klass|
2479
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EOPNOTSUPP::Errno') do |klass|
2480
2480
  end
2481
2481
 
2482
2482
  ##
@@ -2484,7 +2484,7 @@ end
2484
2484
  # Created: 2013-04-01 18:33:53 +0200
2485
2485
  # Platform: rbx 2.0.0.rc1
2486
2486
  #
2487
- RubyLint.global_scope.define_constant('Errno::EOPNOTSUPP::Strerror') do |klass|
2487
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EOPNOTSUPP::Strerror') do |klass|
2488
2488
  end
2489
2489
 
2490
2490
  ##
@@ -2492,8 +2492,8 @@ end
2492
2492
  # Created: 2013-04-01 18:33:53 +0200
2493
2493
  # Platform: rbx 2.0.0.rc1
2494
2494
  #
2495
- RubyLint.global_scope.define_constant('Errno::EOVERFLOW') do |klass|
2496
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2495
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EOVERFLOW') do |klass|
2496
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2497
2497
  end
2498
2498
 
2499
2499
  ##
@@ -2501,7 +2501,7 @@ end
2501
2501
  # Created: 2013-04-01 18:33:53 +0200
2502
2502
  # Platform: rbx 2.0.0.rc1
2503
2503
  #
2504
- RubyLint.global_scope.define_constant('Errno::EOVERFLOW::Errno') do |klass|
2504
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EOVERFLOW::Errno') do |klass|
2505
2505
  end
2506
2506
 
2507
2507
  ##
@@ -2509,7 +2509,7 @@ end
2509
2509
  # Created: 2013-04-01 18:33:53 +0200
2510
2510
  # Platform: rbx 2.0.0.rc1
2511
2511
  #
2512
- RubyLint.global_scope.define_constant('Errno::EOVERFLOW::Strerror') do |klass|
2512
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EOVERFLOW::Strerror') do |klass|
2513
2513
  end
2514
2514
 
2515
2515
  ##
@@ -2517,8 +2517,8 @@ end
2517
2517
  # Created: 2013-04-01 18:33:53 +0200
2518
2518
  # Platform: rbx 2.0.0.rc1
2519
2519
  #
2520
- RubyLint.global_scope.define_constant('Errno::EOWNERDEAD') do |klass|
2521
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2520
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EOWNERDEAD') do |klass|
2521
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2522
2522
  end
2523
2523
 
2524
2524
  ##
@@ -2526,7 +2526,7 @@ end
2526
2526
  # Created: 2013-04-01 18:33:53 +0200
2527
2527
  # Platform: rbx 2.0.0.rc1
2528
2528
  #
2529
- RubyLint.global_scope.define_constant('Errno::EOWNERDEAD::Errno') do |klass|
2529
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EOWNERDEAD::Errno') do |klass|
2530
2530
  end
2531
2531
 
2532
2532
  ##
@@ -2534,7 +2534,7 @@ end
2534
2534
  # Created: 2013-04-01 18:33:53 +0200
2535
2535
  # Platform: rbx 2.0.0.rc1
2536
2536
  #
2537
- RubyLint.global_scope.define_constant('Errno::EOWNERDEAD::Strerror') do |klass|
2537
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EOWNERDEAD::Strerror') do |klass|
2538
2538
  end
2539
2539
 
2540
2540
  ##
@@ -2542,8 +2542,8 @@ end
2542
2542
  # Created: 2013-04-01 18:33:53 +0200
2543
2543
  # Platform: rbx 2.0.0.rc1
2544
2544
  #
2545
- RubyLint.global_scope.define_constant('Errno::EPERM') do |klass|
2546
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2545
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EPERM') do |klass|
2546
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2547
2547
  end
2548
2548
 
2549
2549
  ##
@@ -2551,7 +2551,7 @@ end
2551
2551
  # Created: 2013-04-01 18:33:53 +0200
2552
2552
  # Platform: rbx 2.0.0.rc1
2553
2553
  #
2554
- RubyLint.global_scope.define_constant('Errno::EPERM::Errno') do |klass|
2554
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EPERM::Errno') do |klass|
2555
2555
  end
2556
2556
 
2557
2557
  ##
@@ -2559,7 +2559,7 @@ end
2559
2559
  # Created: 2013-04-01 18:33:53 +0200
2560
2560
  # Platform: rbx 2.0.0.rc1
2561
2561
  #
2562
- RubyLint.global_scope.define_constant('Errno::EPERM::Strerror') do |klass|
2562
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EPERM::Strerror') do |klass|
2563
2563
  end
2564
2564
 
2565
2565
  ##
@@ -2567,8 +2567,8 @@ end
2567
2567
  # Created: 2013-04-01 18:33:53 +0200
2568
2568
  # Platform: rbx 2.0.0.rc1
2569
2569
  #
2570
- RubyLint.global_scope.define_constant('Errno::EPFNOSUPPORT') do |klass|
2571
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2570
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EPFNOSUPPORT') do |klass|
2571
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2572
2572
  end
2573
2573
 
2574
2574
  ##
@@ -2576,7 +2576,7 @@ end
2576
2576
  # Created: 2013-04-01 18:33:53 +0200
2577
2577
  # Platform: rbx 2.0.0.rc1
2578
2578
  #
2579
- RubyLint.global_scope.define_constant('Errno::EPFNOSUPPORT::Errno') do |klass|
2579
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EPFNOSUPPORT::Errno') do |klass|
2580
2580
  end
2581
2581
 
2582
2582
  ##
@@ -2584,7 +2584,7 @@ end
2584
2584
  # Created: 2013-04-01 18:33:53 +0200
2585
2585
  # Platform: rbx 2.0.0.rc1
2586
2586
  #
2587
- RubyLint.global_scope.define_constant('Errno::EPFNOSUPPORT::Strerror') do |klass|
2587
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EPFNOSUPPORT::Strerror') do |klass|
2588
2588
  end
2589
2589
 
2590
2590
  ##
@@ -2592,8 +2592,8 @@ end
2592
2592
  # Created: 2013-04-01 18:33:53 +0200
2593
2593
  # Platform: rbx 2.0.0.rc1
2594
2594
  #
2595
- RubyLint.global_scope.define_constant('Errno::EPIPE') do |klass|
2596
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2595
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EPIPE') do |klass|
2596
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2597
2597
  end
2598
2598
 
2599
2599
  ##
@@ -2601,7 +2601,7 @@ end
2601
2601
  # Created: 2013-04-01 18:33:53 +0200
2602
2602
  # Platform: rbx 2.0.0.rc1
2603
2603
  #
2604
- RubyLint.global_scope.define_constant('Errno::EPIPE::Errno') do |klass|
2604
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EPIPE::Errno') do |klass|
2605
2605
  end
2606
2606
 
2607
2607
  ##
@@ -2609,7 +2609,7 @@ end
2609
2609
  # Created: 2013-04-01 18:33:53 +0200
2610
2610
  # Platform: rbx 2.0.0.rc1
2611
2611
  #
2612
- RubyLint.global_scope.define_constant('Errno::EPIPE::Strerror') do |klass|
2612
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EPIPE::Strerror') do |klass|
2613
2613
  end
2614
2614
 
2615
2615
  ##
@@ -2617,8 +2617,8 @@ end
2617
2617
  # Created: 2013-04-01 18:33:53 +0200
2618
2618
  # Platform: rbx 2.0.0.rc1
2619
2619
  #
2620
- RubyLint.global_scope.define_constant('Errno::EPROTO') do |klass|
2621
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2620
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EPROTO') do |klass|
2621
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2622
2622
  end
2623
2623
 
2624
2624
  ##
@@ -2626,7 +2626,7 @@ end
2626
2626
  # Created: 2013-04-01 18:33:53 +0200
2627
2627
  # Platform: rbx 2.0.0.rc1
2628
2628
  #
2629
- RubyLint.global_scope.define_constant('Errno::EPROTO::Errno') do |klass|
2629
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EPROTO::Errno') do |klass|
2630
2630
  end
2631
2631
 
2632
2632
  ##
@@ -2634,7 +2634,7 @@ end
2634
2634
  # Created: 2013-04-01 18:33:53 +0200
2635
2635
  # Platform: rbx 2.0.0.rc1
2636
2636
  #
2637
- RubyLint.global_scope.define_constant('Errno::EPROTO::Strerror') do |klass|
2637
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EPROTO::Strerror') do |klass|
2638
2638
  end
2639
2639
 
2640
2640
  ##
@@ -2642,8 +2642,8 @@ end
2642
2642
  # Created: 2013-04-01 18:33:53 +0200
2643
2643
  # Platform: rbx 2.0.0.rc1
2644
2644
  #
2645
- RubyLint.global_scope.define_constant('Errno::EPROTONOSUPPORT') do |klass|
2646
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2645
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EPROTONOSUPPORT') do |klass|
2646
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2647
2647
  end
2648
2648
 
2649
2649
  ##
@@ -2651,7 +2651,7 @@ end
2651
2651
  # Created: 2013-04-01 18:33:53 +0200
2652
2652
  # Platform: rbx 2.0.0.rc1
2653
2653
  #
2654
- RubyLint.global_scope.define_constant('Errno::EPROTONOSUPPORT::Errno') do |klass|
2654
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EPROTONOSUPPORT::Errno') do |klass|
2655
2655
  end
2656
2656
 
2657
2657
  ##
@@ -2659,7 +2659,7 @@ end
2659
2659
  # Created: 2013-04-01 18:33:53 +0200
2660
2660
  # Platform: rbx 2.0.0.rc1
2661
2661
  #
2662
- RubyLint.global_scope.define_constant('Errno::EPROTONOSUPPORT::Strerror') do |klass|
2662
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EPROTONOSUPPORT::Strerror') do |klass|
2663
2663
  end
2664
2664
 
2665
2665
  ##
@@ -2667,8 +2667,8 @@ end
2667
2667
  # Created: 2013-04-01 18:33:53 +0200
2668
2668
  # Platform: rbx 2.0.0.rc1
2669
2669
  #
2670
- RubyLint.global_scope.define_constant('Errno::EPROTOTYPE') do |klass|
2671
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2670
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EPROTOTYPE') do |klass|
2671
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2672
2672
  end
2673
2673
 
2674
2674
  ##
@@ -2676,7 +2676,7 @@ end
2676
2676
  # Created: 2013-04-01 18:33:53 +0200
2677
2677
  # Platform: rbx 2.0.0.rc1
2678
2678
  #
2679
- RubyLint.global_scope.define_constant('Errno::EPROTOTYPE::Errno') do |klass|
2679
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EPROTOTYPE::Errno') do |klass|
2680
2680
  end
2681
2681
 
2682
2682
  ##
@@ -2684,7 +2684,7 @@ end
2684
2684
  # Created: 2013-04-01 18:33:53 +0200
2685
2685
  # Platform: rbx 2.0.0.rc1
2686
2686
  #
2687
- RubyLint.global_scope.define_constant('Errno::EPROTOTYPE::Strerror') do |klass|
2687
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EPROTOTYPE::Strerror') do |klass|
2688
2688
  end
2689
2689
 
2690
2690
  ##
@@ -2692,8 +2692,8 @@ end
2692
2692
  # Created: 2013-04-01 18:33:53 +0200
2693
2693
  # Platform: rbx 2.0.0.rc1
2694
2694
  #
2695
- RubyLint.global_scope.define_constant('Errno::ERANGE') do |klass|
2696
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2695
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ERANGE') do |klass|
2696
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2697
2697
  end
2698
2698
 
2699
2699
  ##
@@ -2701,7 +2701,7 @@ end
2701
2701
  # Created: 2013-04-01 18:33:53 +0200
2702
2702
  # Platform: rbx 2.0.0.rc1
2703
2703
  #
2704
- RubyLint.global_scope.define_constant('Errno::ERANGE::Errno') do |klass|
2704
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ERANGE::Errno') do |klass|
2705
2705
  end
2706
2706
 
2707
2707
  ##
@@ -2709,7 +2709,7 @@ end
2709
2709
  # Created: 2013-04-01 18:33:53 +0200
2710
2710
  # Platform: rbx 2.0.0.rc1
2711
2711
  #
2712
- RubyLint.global_scope.define_constant('Errno::ERANGE::Strerror') do |klass|
2712
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ERANGE::Strerror') do |klass|
2713
2713
  end
2714
2714
 
2715
2715
  ##
@@ -2717,8 +2717,8 @@ end
2717
2717
  # Created: 2013-04-01 18:33:53 +0200
2718
2718
  # Platform: rbx 2.0.0.rc1
2719
2719
  #
2720
- RubyLint.global_scope.define_constant('Errno::EREMCHG') do |klass|
2721
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2720
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EREMCHG') do |klass|
2721
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2722
2722
  end
2723
2723
 
2724
2724
  ##
@@ -2726,7 +2726,7 @@ end
2726
2726
  # Created: 2013-04-01 18:33:53 +0200
2727
2727
  # Platform: rbx 2.0.0.rc1
2728
2728
  #
2729
- RubyLint.global_scope.define_constant('Errno::EREMCHG::Errno') do |klass|
2729
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EREMCHG::Errno') do |klass|
2730
2730
  end
2731
2731
 
2732
2732
  ##
@@ -2734,7 +2734,7 @@ end
2734
2734
  # Created: 2013-04-01 18:33:53 +0200
2735
2735
  # Platform: rbx 2.0.0.rc1
2736
2736
  #
2737
- RubyLint.global_scope.define_constant('Errno::EREMCHG::Strerror') do |klass|
2737
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EREMCHG::Strerror') do |klass|
2738
2738
  end
2739
2739
 
2740
2740
  ##
@@ -2742,8 +2742,8 @@ end
2742
2742
  # Created: 2013-04-01 18:33:53 +0200
2743
2743
  # Platform: rbx 2.0.0.rc1
2744
2744
  #
2745
- RubyLint.global_scope.define_constant('Errno::EREMOTE') do |klass|
2746
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2745
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EREMOTE') do |klass|
2746
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2747
2747
  end
2748
2748
 
2749
2749
  ##
@@ -2751,7 +2751,7 @@ end
2751
2751
  # Created: 2013-04-01 18:33:53 +0200
2752
2752
  # Platform: rbx 2.0.0.rc1
2753
2753
  #
2754
- RubyLint.global_scope.define_constant('Errno::EREMOTE::Errno') do |klass|
2754
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EREMOTE::Errno') do |klass|
2755
2755
  end
2756
2756
 
2757
2757
  ##
@@ -2759,7 +2759,7 @@ end
2759
2759
  # Created: 2013-04-01 18:33:53 +0200
2760
2760
  # Platform: rbx 2.0.0.rc1
2761
2761
  #
2762
- RubyLint.global_scope.define_constant('Errno::EREMOTE::Strerror') do |klass|
2762
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EREMOTE::Strerror') do |klass|
2763
2763
  end
2764
2764
 
2765
2765
  ##
@@ -2767,8 +2767,8 @@ end
2767
2767
  # Created: 2013-04-01 18:33:53 +0200
2768
2768
  # Platform: rbx 2.0.0.rc1
2769
2769
  #
2770
- RubyLint.global_scope.define_constant('Errno::EREMOTEIO') do |klass|
2771
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2770
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EREMOTEIO') do |klass|
2771
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2772
2772
  end
2773
2773
 
2774
2774
  ##
@@ -2776,7 +2776,7 @@ end
2776
2776
  # Created: 2013-04-01 18:33:53 +0200
2777
2777
  # Platform: rbx 2.0.0.rc1
2778
2778
  #
2779
- RubyLint.global_scope.define_constant('Errno::EREMOTEIO::Errno') do |klass|
2779
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EREMOTEIO::Errno') do |klass|
2780
2780
  end
2781
2781
 
2782
2782
  ##
@@ -2784,7 +2784,7 @@ end
2784
2784
  # Created: 2013-04-01 18:33:53 +0200
2785
2785
  # Platform: rbx 2.0.0.rc1
2786
2786
  #
2787
- RubyLint.global_scope.define_constant('Errno::EREMOTEIO::Strerror') do |klass|
2787
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EREMOTEIO::Strerror') do |klass|
2788
2788
  end
2789
2789
 
2790
2790
  ##
@@ -2792,8 +2792,8 @@ end
2792
2792
  # Created: 2013-04-01 18:33:53 +0200
2793
2793
  # Platform: rbx 2.0.0.rc1
2794
2794
  #
2795
- RubyLint.global_scope.define_constant('Errno::ERESTART') do |klass|
2796
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2795
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ERESTART') do |klass|
2796
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2797
2797
  end
2798
2798
 
2799
2799
  ##
@@ -2801,7 +2801,7 @@ end
2801
2801
  # Created: 2013-04-01 18:33:53 +0200
2802
2802
  # Platform: rbx 2.0.0.rc1
2803
2803
  #
2804
- RubyLint.global_scope.define_constant('Errno::ERESTART::Errno') do |klass|
2804
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ERESTART::Errno') do |klass|
2805
2805
  end
2806
2806
 
2807
2807
  ##
@@ -2809,7 +2809,7 @@ end
2809
2809
  # Created: 2013-04-01 18:33:53 +0200
2810
2810
  # Platform: rbx 2.0.0.rc1
2811
2811
  #
2812
- RubyLint.global_scope.define_constant('Errno::ERESTART::Strerror') do |klass|
2812
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ERESTART::Strerror') do |klass|
2813
2813
  end
2814
2814
 
2815
2815
  ##
@@ -2817,8 +2817,8 @@ end
2817
2817
  # Created: 2013-04-01 18:33:53 +0200
2818
2818
  # Platform: rbx 2.0.0.rc1
2819
2819
  #
2820
- RubyLint.global_scope.define_constant('Errno::ERFKILL') do |klass|
2821
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2820
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ERFKILL') do |klass|
2821
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2822
2822
  end
2823
2823
 
2824
2824
  ##
@@ -2826,7 +2826,7 @@ end
2826
2826
  # Created: 2013-04-01 18:33:53 +0200
2827
2827
  # Platform: rbx 2.0.0.rc1
2828
2828
  #
2829
- RubyLint.global_scope.define_constant('Errno::ERFKILL::Errno') do |klass|
2829
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ERFKILL::Errno') do |klass|
2830
2830
  end
2831
2831
 
2832
2832
  ##
@@ -2834,7 +2834,7 @@ end
2834
2834
  # Created: 2013-04-01 18:33:53 +0200
2835
2835
  # Platform: rbx 2.0.0.rc1
2836
2836
  #
2837
- RubyLint.global_scope.define_constant('Errno::ERFKILL::Strerror') do |klass|
2837
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ERFKILL::Strerror') do |klass|
2838
2838
  end
2839
2839
 
2840
2840
  ##
@@ -2842,8 +2842,8 @@ end
2842
2842
  # Created: 2013-04-01 18:33:53 +0200
2843
2843
  # Platform: rbx 2.0.0.rc1
2844
2844
  #
2845
- RubyLint.global_scope.define_constant('Errno::EROFS') do |klass|
2846
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2845
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EROFS') do |klass|
2846
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2847
2847
  end
2848
2848
 
2849
2849
  ##
@@ -2851,7 +2851,7 @@ end
2851
2851
  # Created: 2013-04-01 18:33:53 +0200
2852
2852
  # Platform: rbx 2.0.0.rc1
2853
2853
  #
2854
- RubyLint.global_scope.define_constant('Errno::EROFS::Errno') do |klass|
2854
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EROFS::Errno') do |klass|
2855
2855
  end
2856
2856
 
2857
2857
  ##
@@ -2859,7 +2859,7 @@ end
2859
2859
  # Created: 2013-04-01 18:33:53 +0200
2860
2860
  # Platform: rbx 2.0.0.rc1
2861
2861
  #
2862
- RubyLint.global_scope.define_constant('Errno::EROFS::Strerror') do |klass|
2862
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EROFS::Strerror') do |klass|
2863
2863
  end
2864
2864
 
2865
2865
  ##
@@ -2867,8 +2867,8 @@ end
2867
2867
  # Created: 2013-04-01 18:33:53 +0200
2868
2868
  # Platform: rbx 2.0.0.rc1
2869
2869
  #
2870
- RubyLint.global_scope.define_constant('Errno::ESHUTDOWN') do |klass|
2871
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2870
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ESHUTDOWN') do |klass|
2871
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2872
2872
  end
2873
2873
 
2874
2874
  ##
@@ -2876,7 +2876,7 @@ end
2876
2876
  # Created: 2013-04-01 18:33:53 +0200
2877
2877
  # Platform: rbx 2.0.0.rc1
2878
2878
  #
2879
- RubyLint.global_scope.define_constant('Errno::ESHUTDOWN::Errno') do |klass|
2879
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ESHUTDOWN::Errno') do |klass|
2880
2880
  end
2881
2881
 
2882
2882
  ##
@@ -2884,7 +2884,7 @@ end
2884
2884
  # Created: 2013-04-01 18:33:53 +0200
2885
2885
  # Platform: rbx 2.0.0.rc1
2886
2886
  #
2887
- RubyLint.global_scope.define_constant('Errno::ESHUTDOWN::Strerror') do |klass|
2887
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ESHUTDOWN::Strerror') do |klass|
2888
2888
  end
2889
2889
 
2890
2890
  ##
@@ -2892,8 +2892,8 @@ end
2892
2892
  # Created: 2013-04-01 18:33:53 +0200
2893
2893
  # Platform: rbx 2.0.0.rc1
2894
2894
  #
2895
- RubyLint.global_scope.define_constant('Errno::ESOCKTNOSUPPORT') do |klass|
2896
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2895
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ESOCKTNOSUPPORT') do |klass|
2896
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2897
2897
  end
2898
2898
 
2899
2899
  ##
@@ -2901,7 +2901,7 @@ end
2901
2901
  # Created: 2013-04-01 18:33:53 +0200
2902
2902
  # Platform: rbx 2.0.0.rc1
2903
2903
  #
2904
- RubyLint.global_scope.define_constant('Errno::ESOCKTNOSUPPORT::Errno') do |klass|
2904
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ESOCKTNOSUPPORT::Errno') do |klass|
2905
2905
  end
2906
2906
 
2907
2907
  ##
@@ -2909,7 +2909,7 @@ end
2909
2909
  # Created: 2013-04-01 18:33:53 +0200
2910
2910
  # Platform: rbx 2.0.0.rc1
2911
2911
  #
2912
- RubyLint.global_scope.define_constant('Errno::ESOCKTNOSUPPORT::Strerror') do |klass|
2912
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ESOCKTNOSUPPORT::Strerror') do |klass|
2913
2913
  end
2914
2914
 
2915
2915
  ##
@@ -2917,8 +2917,8 @@ end
2917
2917
  # Created: 2013-04-01 18:33:53 +0200
2918
2918
  # Platform: rbx 2.0.0.rc1
2919
2919
  #
2920
- RubyLint.global_scope.define_constant('Errno::ESPIPE') do |klass|
2921
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2920
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ESPIPE') do |klass|
2921
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2922
2922
  end
2923
2923
 
2924
2924
  ##
@@ -2926,7 +2926,7 @@ end
2926
2926
  # Created: 2013-04-01 18:33:53 +0200
2927
2927
  # Platform: rbx 2.0.0.rc1
2928
2928
  #
2929
- RubyLint.global_scope.define_constant('Errno::ESPIPE::Errno') do |klass|
2929
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ESPIPE::Errno') do |klass|
2930
2930
  end
2931
2931
 
2932
2932
  ##
@@ -2934,7 +2934,7 @@ end
2934
2934
  # Created: 2013-04-01 18:33:53 +0200
2935
2935
  # Platform: rbx 2.0.0.rc1
2936
2936
  #
2937
- RubyLint.global_scope.define_constant('Errno::ESPIPE::Strerror') do |klass|
2937
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ESPIPE::Strerror') do |klass|
2938
2938
  end
2939
2939
 
2940
2940
  ##
@@ -2942,8 +2942,8 @@ end
2942
2942
  # Created: 2013-04-01 18:33:53 +0200
2943
2943
  # Platform: rbx 2.0.0.rc1
2944
2944
  #
2945
- RubyLint.global_scope.define_constant('Errno::ESRCH') do |klass|
2946
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2945
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ESRCH') do |klass|
2946
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2947
2947
  end
2948
2948
 
2949
2949
  ##
@@ -2951,7 +2951,7 @@ end
2951
2951
  # Created: 2013-04-01 18:33:53 +0200
2952
2952
  # Platform: rbx 2.0.0.rc1
2953
2953
  #
2954
- RubyLint.global_scope.define_constant('Errno::ESRCH::Errno') do |klass|
2954
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ESRCH::Errno') do |klass|
2955
2955
  end
2956
2956
 
2957
2957
  ##
@@ -2959,7 +2959,7 @@ end
2959
2959
  # Created: 2013-04-01 18:33:53 +0200
2960
2960
  # Platform: rbx 2.0.0.rc1
2961
2961
  #
2962
- RubyLint.global_scope.define_constant('Errno::ESRCH::Strerror') do |klass|
2962
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ESRCH::Strerror') do |klass|
2963
2963
  end
2964
2964
 
2965
2965
  ##
@@ -2967,8 +2967,8 @@ end
2967
2967
  # Created: 2013-04-01 18:33:53 +0200
2968
2968
  # Platform: rbx 2.0.0.rc1
2969
2969
  #
2970
- RubyLint.global_scope.define_constant('Errno::ESRMNT') do |klass|
2971
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2970
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ESRMNT') do |klass|
2971
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2972
2972
  end
2973
2973
 
2974
2974
  ##
@@ -2976,7 +2976,7 @@ end
2976
2976
  # Created: 2013-04-01 18:33:53 +0200
2977
2977
  # Platform: rbx 2.0.0.rc1
2978
2978
  #
2979
- RubyLint.global_scope.define_constant('Errno::ESRMNT::Errno') do |klass|
2979
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ESRMNT::Errno') do |klass|
2980
2980
  end
2981
2981
 
2982
2982
  ##
@@ -2984,7 +2984,7 @@ end
2984
2984
  # Created: 2013-04-01 18:33:53 +0200
2985
2985
  # Platform: rbx 2.0.0.rc1
2986
2986
  #
2987
- RubyLint.global_scope.define_constant('Errno::ESRMNT::Strerror') do |klass|
2987
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ESRMNT::Strerror') do |klass|
2988
2988
  end
2989
2989
 
2990
2990
  ##
@@ -2992,8 +2992,8 @@ end
2992
2992
  # Created: 2013-04-01 18:33:53 +0200
2993
2993
  # Platform: rbx 2.0.0.rc1
2994
2994
  #
2995
- RubyLint.global_scope.define_constant('Errno::ESTALE') do |klass|
2996
- klass.inherits(RubyLint.global_constant('SystemCallError'))
2995
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ESTALE') do |klass|
2996
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
2997
2997
  end
2998
2998
 
2999
2999
  ##
@@ -3001,7 +3001,7 @@ end
3001
3001
  # Created: 2013-04-01 18:33:53 +0200
3002
3002
  # Platform: rbx 2.0.0.rc1
3003
3003
  #
3004
- RubyLint.global_scope.define_constant('Errno::ESTALE::Errno') do |klass|
3004
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ESTALE::Errno') do |klass|
3005
3005
  end
3006
3006
 
3007
3007
  ##
@@ -3009,7 +3009,7 @@ end
3009
3009
  # Created: 2013-04-01 18:33:53 +0200
3010
3010
  # Platform: rbx 2.0.0.rc1
3011
3011
  #
3012
- RubyLint.global_scope.define_constant('Errno::ESTALE::Strerror') do |klass|
3012
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ESTALE::Strerror') do |klass|
3013
3013
  end
3014
3014
 
3015
3015
  ##
@@ -3017,8 +3017,8 @@ end
3017
3017
  # Created: 2013-04-01 18:33:53 +0200
3018
3018
  # Platform: rbx 2.0.0.rc1
3019
3019
  #
3020
- RubyLint.global_scope.define_constant('Errno::ESTRPIPE') do |klass|
3021
- klass.inherits(RubyLint.global_constant('SystemCallError'))
3020
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ESTRPIPE') do |klass|
3021
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
3022
3022
  end
3023
3023
 
3024
3024
  ##
@@ -3026,7 +3026,7 @@ end
3026
3026
  # Created: 2013-04-01 18:33:54 +0200
3027
3027
  # Platform: rbx 2.0.0.rc1
3028
3028
  #
3029
- RubyLint.global_scope.define_constant('Errno::ESTRPIPE::Errno') do |klass|
3029
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ESTRPIPE::Errno') do |klass|
3030
3030
  end
3031
3031
 
3032
3032
  ##
@@ -3034,7 +3034,7 @@ end
3034
3034
  # Created: 2013-04-01 18:33:54 +0200
3035
3035
  # Platform: rbx 2.0.0.rc1
3036
3036
  #
3037
- RubyLint.global_scope.define_constant('Errno::ESTRPIPE::Strerror') do |klass|
3037
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ESTRPIPE::Strerror') do |klass|
3038
3038
  end
3039
3039
 
3040
3040
  ##
@@ -3042,8 +3042,8 @@ end
3042
3042
  # Created: 2013-04-01 18:33:54 +0200
3043
3043
  # Platform: rbx 2.0.0.rc1
3044
3044
  #
3045
- RubyLint.global_scope.define_constant('Errno::ETIME') do |klass|
3046
- klass.inherits(RubyLint.global_constant('SystemCallError'))
3045
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ETIME') do |klass|
3046
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
3047
3047
  end
3048
3048
 
3049
3049
  ##
@@ -3051,7 +3051,7 @@ end
3051
3051
  # Created: 2013-04-01 18:33:54 +0200
3052
3052
  # Platform: rbx 2.0.0.rc1
3053
3053
  #
3054
- RubyLint.global_scope.define_constant('Errno::ETIME::Errno') do |klass|
3054
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ETIME::Errno') do |klass|
3055
3055
  end
3056
3056
 
3057
3057
  ##
@@ -3059,7 +3059,7 @@ end
3059
3059
  # Created: 2013-04-01 18:33:54 +0200
3060
3060
  # Platform: rbx 2.0.0.rc1
3061
3061
  #
3062
- RubyLint.global_scope.define_constant('Errno::ETIME::Strerror') do |klass|
3062
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ETIME::Strerror') do |klass|
3063
3063
  end
3064
3064
 
3065
3065
  ##
@@ -3067,8 +3067,8 @@ end
3067
3067
  # Created: 2013-04-01 18:33:54 +0200
3068
3068
  # Platform: rbx 2.0.0.rc1
3069
3069
  #
3070
- RubyLint.global_scope.define_constant('Errno::ETIMEDOUT') do |klass|
3071
- klass.inherits(RubyLint.global_constant('SystemCallError'))
3070
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ETIMEDOUT') do |klass|
3071
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
3072
3072
  end
3073
3073
 
3074
3074
  ##
@@ -3076,7 +3076,7 @@ end
3076
3076
  # Created: 2013-04-01 18:33:54 +0200
3077
3077
  # Platform: rbx 2.0.0.rc1
3078
3078
  #
3079
- RubyLint.global_scope.define_constant('Errno::ETIMEDOUT::Errno') do |klass|
3079
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ETIMEDOUT::Errno') do |klass|
3080
3080
  end
3081
3081
 
3082
3082
  ##
@@ -3084,7 +3084,7 @@ end
3084
3084
  # Created: 2013-04-01 18:33:54 +0200
3085
3085
  # Platform: rbx 2.0.0.rc1
3086
3086
  #
3087
- RubyLint.global_scope.define_constant('Errno::ETIMEDOUT::Strerror') do |klass|
3087
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ETIMEDOUT::Strerror') do |klass|
3088
3088
  end
3089
3089
 
3090
3090
  ##
@@ -3092,8 +3092,8 @@ end
3092
3092
  # Created: 2013-04-01 18:33:54 +0200
3093
3093
  # Platform: rbx 2.0.0.rc1
3094
3094
  #
3095
- RubyLint.global_scope.define_constant('Errno::ETOOMANYREFS') do |klass|
3096
- klass.inherits(RubyLint.global_constant('SystemCallError'))
3095
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ETOOMANYREFS') do |klass|
3096
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
3097
3097
  end
3098
3098
 
3099
3099
  ##
@@ -3101,7 +3101,7 @@ end
3101
3101
  # Created: 2013-04-01 18:33:54 +0200
3102
3102
  # Platform: rbx 2.0.0.rc1
3103
3103
  #
3104
- RubyLint.global_scope.define_constant('Errno::ETOOMANYREFS::Errno') do |klass|
3104
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ETOOMANYREFS::Errno') do |klass|
3105
3105
  end
3106
3106
 
3107
3107
  ##
@@ -3109,7 +3109,7 @@ end
3109
3109
  # Created: 2013-04-01 18:33:54 +0200
3110
3110
  # Platform: rbx 2.0.0.rc1
3111
3111
  #
3112
- RubyLint.global_scope.define_constant('Errno::ETOOMANYREFS::Strerror') do |klass|
3112
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ETOOMANYREFS::Strerror') do |klass|
3113
3113
  end
3114
3114
 
3115
3115
  ##
@@ -3117,8 +3117,8 @@ end
3117
3117
  # Created: 2013-04-01 18:33:54 +0200
3118
3118
  # Platform: rbx 2.0.0.rc1
3119
3119
  #
3120
- RubyLint.global_scope.define_constant('Errno::ETXTBSY') do |klass|
3121
- klass.inherits(RubyLint.global_constant('SystemCallError'))
3120
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ETXTBSY') do |klass|
3121
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
3122
3122
  end
3123
3123
 
3124
3124
  ##
@@ -3126,7 +3126,7 @@ end
3126
3126
  # Created: 2013-04-01 18:33:54 +0200
3127
3127
  # Platform: rbx 2.0.0.rc1
3128
3128
  #
3129
- RubyLint.global_scope.define_constant('Errno::ETXTBSY::Errno') do |klass|
3129
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ETXTBSY::Errno') do |klass|
3130
3130
  end
3131
3131
 
3132
3132
  ##
@@ -3134,7 +3134,7 @@ end
3134
3134
  # Created: 2013-04-01 18:33:54 +0200
3135
3135
  # Platform: rbx 2.0.0.rc1
3136
3136
  #
3137
- RubyLint.global_scope.define_constant('Errno::ETXTBSY::Strerror') do |klass|
3137
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::ETXTBSY::Strerror') do |klass|
3138
3138
  end
3139
3139
 
3140
3140
  ##
@@ -3142,8 +3142,8 @@ end
3142
3142
  # Created: 2013-04-01 18:33:54 +0200
3143
3143
  # Platform: rbx 2.0.0.rc1
3144
3144
  #
3145
- RubyLint.global_scope.define_constant('Errno::EUCLEAN') do |klass|
3146
- klass.inherits(RubyLint.global_constant('SystemCallError'))
3145
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EUCLEAN') do |klass|
3146
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
3147
3147
  end
3148
3148
 
3149
3149
  ##
@@ -3151,7 +3151,7 @@ end
3151
3151
  # Created: 2013-04-01 18:33:54 +0200
3152
3152
  # Platform: rbx 2.0.0.rc1
3153
3153
  #
3154
- RubyLint.global_scope.define_constant('Errno::EUCLEAN::Errno') do |klass|
3154
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EUCLEAN::Errno') do |klass|
3155
3155
  end
3156
3156
 
3157
3157
  ##
@@ -3159,7 +3159,7 @@ end
3159
3159
  # Created: 2013-04-01 18:33:54 +0200
3160
3160
  # Platform: rbx 2.0.0.rc1
3161
3161
  #
3162
- RubyLint.global_scope.define_constant('Errno::EUCLEAN::Strerror') do |klass|
3162
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EUCLEAN::Strerror') do |klass|
3163
3163
  end
3164
3164
 
3165
3165
  ##
@@ -3167,8 +3167,8 @@ end
3167
3167
  # Created: 2013-04-01 18:33:54 +0200
3168
3168
  # Platform: rbx 2.0.0.rc1
3169
3169
  #
3170
- RubyLint.global_scope.define_constant('Errno::EUNATCH') do |klass|
3171
- klass.inherits(RubyLint.global_constant('SystemCallError'))
3170
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EUNATCH') do |klass|
3171
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
3172
3172
  end
3173
3173
 
3174
3174
  ##
@@ -3176,7 +3176,7 @@ end
3176
3176
  # Created: 2013-04-01 18:33:54 +0200
3177
3177
  # Platform: rbx 2.0.0.rc1
3178
3178
  #
3179
- RubyLint.global_scope.define_constant('Errno::EUNATCH::Errno') do |klass|
3179
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EUNATCH::Errno') do |klass|
3180
3180
  end
3181
3181
 
3182
3182
  ##
@@ -3184,7 +3184,7 @@ end
3184
3184
  # Created: 2013-04-01 18:33:54 +0200
3185
3185
  # Platform: rbx 2.0.0.rc1
3186
3186
  #
3187
- RubyLint.global_scope.define_constant('Errno::EUNATCH::Strerror') do |klass|
3187
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EUNATCH::Strerror') do |klass|
3188
3188
  end
3189
3189
 
3190
3190
  ##
@@ -3192,8 +3192,8 @@ end
3192
3192
  # Created: 2013-04-01 18:33:54 +0200
3193
3193
  # Platform: rbx 2.0.0.rc1
3194
3194
  #
3195
- RubyLint.global_scope.define_constant('Errno::EUSERS') do |klass|
3196
- klass.inherits(RubyLint.global_constant('SystemCallError'))
3195
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EUSERS') do |klass|
3196
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
3197
3197
  end
3198
3198
 
3199
3199
  ##
@@ -3201,7 +3201,7 @@ end
3201
3201
  # Created: 2013-04-01 18:33:54 +0200
3202
3202
  # Platform: rbx 2.0.0.rc1
3203
3203
  #
3204
- RubyLint.global_scope.define_constant('Errno::EUSERS::Errno') do |klass|
3204
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EUSERS::Errno') do |klass|
3205
3205
  end
3206
3206
 
3207
3207
  ##
@@ -3209,7 +3209,7 @@ end
3209
3209
  # Created: 2013-04-01 18:33:54 +0200
3210
3210
  # Platform: rbx 2.0.0.rc1
3211
3211
  #
3212
- RubyLint.global_scope.define_constant('Errno::EUSERS::Strerror') do |klass|
3212
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EUSERS::Strerror') do |klass|
3213
3213
  end
3214
3214
 
3215
3215
  ##
@@ -3217,8 +3217,8 @@ end
3217
3217
  # Created: 2013-04-01 18:33:54 +0200
3218
3218
  # Platform: rbx 2.0.0.rc1
3219
3219
  #
3220
- RubyLint.global_scope.define_constant('Errno::EWOULDBLOCK') do |klass|
3221
- klass.inherits(RubyLint.global_constant('SystemCallError'))
3220
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EWOULDBLOCK') do |klass|
3221
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
3222
3222
  end
3223
3223
 
3224
3224
  ##
@@ -3226,8 +3226,8 @@ end
3226
3226
  # Created: 2013-04-01 18:33:54 +0200
3227
3227
  # Platform: rbx 2.0.0.rc1
3228
3228
  #
3229
- RubyLint.global_scope.define_constant('Errno::EXDEV') do |klass|
3230
- klass.inherits(RubyLint.global_constant('SystemCallError'))
3229
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EXDEV') do |klass|
3230
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
3231
3231
  end
3232
3232
 
3233
3233
  ##
@@ -3235,7 +3235,7 @@ end
3235
3235
  # Created: 2013-04-01 18:33:54 +0200
3236
3236
  # Platform: rbx 2.0.0.rc1
3237
3237
  #
3238
- RubyLint.global_scope.define_constant('Errno::EXDEV::Errno') do |klass|
3238
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EXDEV::Errno') do |klass|
3239
3239
  end
3240
3240
 
3241
3241
  ##
@@ -3243,7 +3243,7 @@ end
3243
3243
  # Created: 2013-04-01 18:33:54 +0200
3244
3244
  # Platform: rbx 2.0.0.rc1
3245
3245
  #
3246
- RubyLint.global_scope.define_constant('Errno::EXDEV::Strerror') do |klass|
3246
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EXDEV::Strerror') do |klass|
3247
3247
  end
3248
3248
 
3249
3249
  ##
@@ -3251,8 +3251,8 @@ end
3251
3251
  # Created: 2013-04-01 18:33:54 +0200
3252
3252
  # Platform: rbx 2.0.0.rc1
3253
3253
  #
3254
- RubyLint.global_scope.define_constant('Errno::EXFULL') do |klass|
3255
- klass.inherits(RubyLint.global_constant('SystemCallError'))
3254
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EXFULL') do |klass|
3255
+ klass.inherits(RubyLint::VirtualMachine.constant_proxy('SystemCallError'))
3256
3256
  end
3257
3257
 
3258
3258
  ##
@@ -3260,7 +3260,7 @@ end
3260
3260
  # Created: 2013-04-01 18:33:54 +0200
3261
3261
  # Platform: rbx 2.0.0.rc1
3262
3262
  #
3263
- RubyLint.global_scope.define_constant('Errno::EXFULL::Errno') do |klass|
3263
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EXFULL::Errno') do |klass|
3264
3264
  end
3265
3265
 
3266
3266
  ##
@@ -3268,7 +3268,7 @@ end
3268
3268
  # Created: 2013-04-01 18:33:54 +0200
3269
3269
  # Platform: rbx 2.0.0.rc1
3270
3270
  #
3271
- RubyLint.global_scope.define_constant('Errno::EXFULL::Strerror') do |klass|
3271
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::EXFULL::Strerror') do |klass|
3272
3272
  end
3273
3273
 
3274
3274
  ##
@@ -3276,7 +3276,7 @@ end
3276
3276
  # Created: 2013-04-01 18:33:54 +0200
3277
3277
  # Platform: rbx 2.0.0.rc1
3278
3278
  #
3279
- RubyLint.global_scope.define_constant('Errno::FFI') do |klass|
3279
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::FFI') do |klass|
3280
3280
 
3281
3281
  klass.define_method('__module_init__')
3282
3282
 
@@ -3327,5 +3327,5 @@ end
3327
3327
  # Created: 2013-04-01 18:33:54 +0200
3328
3328
  # Platform: rbx 2.0.0.rc1
3329
3329
  #
3330
- RubyLint.global_scope.define_constant('Errno::Mapping') do |klass|
3330
+ RubyLint::VirtualMachine.global_scope.define_constant('Errno::Mapping') do |klass|
3331
3331
  end