mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Rename error_squiggle to error_highlight
This commit is contained in:
parent
e946049665
commit
9438c99590
Notes:
git
2021-06-29 23:46:18 +09:00
8 changed files with 33 additions and 33 deletions
|
@ -5,10 +5,10 @@ rescue LoadError
|
||||||
end if defined?(Gem)
|
end if defined?(Gem)
|
||||||
|
|
||||||
begin
|
begin
|
||||||
require 'error_squiggle'
|
require 'error_highlight'
|
||||||
rescue LoadError
|
rescue LoadError
|
||||||
warn "`error_squiggle' was not loaded."
|
warn "`error_highlight' was not loaded."
|
||||||
end if defined?(ErrorSquiggle)
|
end if defined?(ErrorHighlight)
|
||||||
|
|
||||||
begin
|
begin
|
||||||
require 'did_you_mean'
|
require 'did_you_mean'
|
||||||
|
|
2
lib/error_highlight.rb
Normal file
2
lib/error_highlight.rb
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
require_relative "error_highlight/base"
|
||||||
|
require_relative "error_highlight/core_ext"
|
|
@ -1,6 +1,6 @@
|
||||||
require_relative "version"
|
require_relative "version"
|
||||||
|
|
||||||
module ErrorSquiggle
|
module ErrorHighlight
|
||||||
# Identify the code fragment that seems associated with a given error
|
# Identify the code fragment that seems associated with a given error
|
||||||
#
|
#
|
||||||
# Arguments:
|
# Arguments:
|
|
@ -1,4 +1,4 @@
|
||||||
module ErrorSquiggle
|
module ErrorHighlight
|
||||||
module CoreExt
|
module CoreExt
|
||||||
SKIP_TO_S_FOR_SUPER_LOOKUP = true
|
SKIP_TO_S_FOR_SUPER_LOOKUP = true
|
||||||
private_constant :SKIP_TO_S_FOR_SUPER_LOOKUP
|
private_constant :SKIP_TO_S_FOR_SUPER_LOOKUP
|
||||||
|
@ -22,7 +22,7 @@ module ErrorSquiggle
|
||||||
point = :args
|
point = :args
|
||||||
end
|
end
|
||||||
|
|
||||||
spot = ErrorSquiggle.spot(node, point, **opts) do |lineno, last_lineno|
|
spot = ErrorHighlight.spot(node, point, **opts) do |lineno, last_lineno|
|
||||||
last_lineno ||= lineno
|
last_lineno ||= lineno
|
||||||
node.script_lines[lineno - 1 .. last_lineno - 1].join("")
|
node.script_lines[lineno - 1 .. last_lineno - 1].join("")
|
||||||
end
|
end
|
|
@ -1,3 +1,3 @@
|
||||||
module ErrorSquiggle
|
module ErrorHighlight
|
||||||
VERSION = "0.1.0"
|
VERSION = "0.1.0"
|
||||||
end
|
end
|
|
@ -1,2 +0,0 @@
|
||||||
require_relative "error_squiggle/base"
|
|
||||||
require_relative "error_squiggle/core_ext"
|
|
8
ruby.c
8
ruby.c
|
@ -94,7 +94,7 @@ void rb_warning_category_update(unsigned int mask, unsigned int bits);
|
||||||
#define EACH_FEATURES(X, SEP) \
|
#define EACH_FEATURES(X, SEP) \
|
||||||
X(gems) \
|
X(gems) \
|
||||||
SEP \
|
SEP \
|
||||||
X(error_squiggle) \
|
X(error_highlight) \
|
||||||
SEP \
|
SEP \
|
||||||
X(did_you_mean) \
|
X(did_you_mean) \
|
||||||
SEP \
|
SEP \
|
||||||
|
@ -322,7 +322,7 @@ usage(const char *name, int help, int highlight, int columns)
|
||||||
};
|
};
|
||||||
static const struct message features[] = {
|
static const struct message features[] = {
|
||||||
M("gems", "", "rubygems (only for debugging, default: "DEFAULT_RUBYGEMS_ENABLED")"),
|
M("gems", "", "rubygems (only for debugging, default: "DEFAULT_RUBYGEMS_ENABLED")"),
|
||||||
M("error_squiggle", "", "error_squiggle (default: "DEFAULT_RUBYGEMS_ENABLED")"),
|
M("error_highlight", "", "error_highlight (default: "DEFAULT_RUBYGEMS_ENABLED")"),
|
||||||
M("did_you_mean", "", "did_you_mean (default: "DEFAULT_RUBYGEMS_ENABLED")"),
|
M("did_you_mean", "", "did_you_mean (default: "DEFAULT_RUBYGEMS_ENABLED")"),
|
||||||
M("rubyopt", "", "RUBYOPT environment variable (default: enabled)"),
|
M("rubyopt", "", "RUBYOPT environment variable (default: enabled)"),
|
||||||
M("frozen-string-literal", "", "freeze all string literals (default: disabled)"),
|
M("frozen-string-literal", "", "freeze all string literals (default: disabled)"),
|
||||||
|
@ -1511,8 +1511,8 @@ ruby_opt_init(ruby_cmdline_options_t *opt)
|
||||||
|
|
||||||
if (opt->features.set & FEATURE_BIT(gems)) {
|
if (opt->features.set & FEATURE_BIT(gems)) {
|
||||||
rb_define_module("Gem");
|
rb_define_module("Gem");
|
||||||
if (opt->features.set & FEATURE_BIT(error_squiggle)) {
|
if (opt->features.set & FEATURE_BIT(error_highlight)) {
|
||||||
rb_define_module("ErrorSquiggle");
|
rb_define_module("ErrorHighlight");
|
||||||
}
|
}
|
||||||
if (opt->features.set & FEATURE_BIT(did_you_mean)) {
|
if (opt->features.set & FEATURE_BIT(did_you_mean)) {
|
||||||
rb_define_module("DidYouMean");
|
rb_define_module("DidYouMean");
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
require "test/unit"
|
require "test/unit"
|
||||||
|
|
||||||
require "error_squiggle"
|
require "error_highlight"
|
||||||
|
|
||||||
class ErrorSquiggleTest < Test::Unit::TestCase
|
class ErrorHighlightTest < Test::Unit::TestCase
|
||||||
class DummyFormatter
|
class DummyFormatter
|
||||||
def message_for(corrections)
|
def message_for(corrections)
|
||||||
""
|
""
|
||||||
|
@ -613,7 +613,7 @@ undefined method `foo=' for #{ v.inspect }
|
||||||
|
|
||||||
def test_CONST
|
def test_CONST
|
||||||
assert_error_message(NameError, <<~END) do
|
assert_error_message(NameError, <<~END) do
|
||||||
uninitialized constant ErrorSquiggleTest::NotDefined
|
uninitialized constant ErrorHighlightTest::NotDefined
|
||||||
|
|
||||||
1 + NotDefined + 1
|
1 + NotDefined + 1
|
||||||
^^^^^^^^^^
|
^^^^^^^^^^
|
||||||
|
@ -625,25 +625,25 @@ uninitialized constant ErrorSquiggleTest::NotDefined
|
||||||
|
|
||||||
def test_COLON2_1
|
def test_COLON2_1
|
||||||
assert_error_message(NameError, <<~END) do
|
assert_error_message(NameError, <<~END) do
|
||||||
uninitialized constant ErrorSquiggleTest::NotDefined
|
uninitialized constant ErrorHighlightTest::NotDefined
|
||||||
|
|
||||||
ErrorSquiggleTest::NotDefined
|
ErrorHighlightTest::NotDefined
|
||||||
^^^^^^^^^^^^
|
^^^^^^^^^^^^
|
||||||
END
|
END
|
||||||
|
|
||||||
ErrorSquiggleTest::NotDefined
|
ErrorHighlightTest::NotDefined
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_COLON2_2
|
def test_COLON2_2
|
||||||
assert_error_message(NameError, <<~END) do
|
assert_error_message(NameError, <<~END) do
|
||||||
uninitialized constant ErrorSquiggleTest::NotDefined
|
uninitialized constant ErrorHighlightTest::NotDefined
|
||||||
|
|
||||||
NotDefined
|
NotDefined
|
||||||
^^^^^^^^^^
|
^^^^^^^^^^
|
||||||
END
|
END
|
||||||
|
|
||||||
ErrorSquiggleTest::
|
ErrorHighlightTest::
|
||||||
NotDefined
|
NotDefined
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -666,7 +666,7 @@ uninitialized constant NotDefined
|
||||||
|
|
||||||
def test_OP_CDECL_read_1
|
def test_OP_CDECL_read_1
|
||||||
assert_error_message(NameError, <<~END) do
|
assert_error_message(NameError, <<~END) do
|
||||||
uninitialized constant ErrorSquiggleTest::OP_CDECL_TEST::NotDefined
|
uninitialized constant ErrorHighlightTest::OP_CDECL_TEST::NotDefined
|
||||||
|
|
||||||
OP_CDECL_TEST::NotDefined += 1
|
OP_CDECL_TEST::NotDefined += 1
|
||||||
^^^^^^^^^^^^
|
^^^^^^^^^^^^
|
||||||
|
@ -678,7 +678,7 @@ uninitialized constant ErrorSquiggleTest::OP_CDECL_TEST::NotDefined
|
||||||
|
|
||||||
def test_OP_CDECL_read_2
|
def test_OP_CDECL_read_2
|
||||||
assert_error_message(NameError, <<~END) do
|
assert_error_message(NameError, <<~END) do
|
||||||
uninitialized constant ErrorSquiggleTest::OP_CDECL_TEST::NotDefined
|
uninitialized constant ErrorHighlightTest::OP_CDECL_TEST::NotDefined
|
||||||
|
|
||||||
OP_CDECL_TEST::NotDefined += # comment
|
OP_CDECL_TEST::NotDefined += # comment
|
||||||
^^^^^^^^^^^^
|
^^^^^^^^^^^^
|
||||||
|
@ -691,7 +691,7 @@ uninitialized constant ErrorSquiggleTest::OP_CDECL_TEST::NotDefined
|
||||||
|
|
||||||
def test_OP_CDECL_read_3
|
def test_OP_CDECL_read_3
|
||||||
assert_error_message(NameError, <<~END) do
|
assert_error_message(NameError, <<~END) do
|
||||||
uninitialized constant ErrorSquiggleTest::OP_CDECL_TEST::NotDefined
|
uninitialized constant ErrorHighlightTest::OP_CDECL_TEST::NotDefined
|
||||||
END
|
END
|
||||||
|
|
||||||
OP_CDECL_TEST::
|
OP_CDECL_TEST::
|
||||||
|
@ -751,13 +751,13 @@ uninitialized constant NotDefined
|
||||||
|
|
||||||
def test_OP_CDECL_toplevel_2
|
def test_OP_CDECL_toplevel_2
|
||||||
assert_error_message(NoMethodError, <<~END) do
|
assert_error_message(NoMethodError, <<~END) do
|
||||||
undefined method `+' for ErrorSquiggleTest:Class
|
undefined method `+' for ErrorHighlightTest:Class
|
||||||
|
|
||||||
::ErrorSquiggleTest += 1
|
::ErrorHighlightTest += 1
|
||||||
^
|
^
|
||||||
END
|
END
|
||||||
|
|
||||||
::ErrorSquiggleTest += 1
|
::ErrorHighlightTest += 1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -787,13 +787,13 @@ NoMethodError
|
||||||
|
|
||||||
def test_const_get
|
def test_const_get
|
||||||
assert_error_message(NameError, <<~END) do
|
assert_error_message(NameError, <<~END) do
|
||||||
uninitialized constant ErrorSquiggleTest::NotDefined
|
uninitialized constant ErrorHighlightTest::NotDefined
|
||||||
|
|
||||||
ErrorSquiggleTest.const_get(:NotDefined)
|
ErrorHighlightTest.const_get(:NotDefined)
|
||||||
^^^^^^^^^^
|
^^^^^^^^^^
|
||||||
END
|
END
|
||||||
|
|
||||||
ErrorSquiggleTest.const_get(:NotDefined)
|
ErrorHighlightTest.const_get(:NotDefined)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue