summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-28 04:26:22 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-28 04:26:22 +0000
commitedc87841f261b40ba8e4f1e0f7523d2da531dbfd (patch)
treea4435cfb17c9dfd4428669c20420abb65ef89fef
parent00ce700c933a0625d97ba5417909cd95c90f4eab (diff)
test_parser_events.rb: event token
* test/ripper/test_parser_events.rb (test_opassign): test parsed event tokens too. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52317 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--test/ripper/test_parser_events.rb39
1 files changed, 26 insertions, 13 deletions
diff --git a/test/ripper/test_parser_events.rb b/test/ripper/test_parser_events.rb
index 107fb6192f..aa222de84f 100644
--- a/test/ripper/test_parser_events.rb
+++ b/test/ripper/test_parser_events.rb
@@ -738,44 +738,57 @@ class TestRipper::ParserEvents < Test::Unit::TestCase
def test_opassign
thru_opassign = false
- parse('a += b', :on_opassign) {thru_opassign = true}
+ tree = parse('a += b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
+ assert_equal "[opassign(var_field(a),+=,vcall(b))]", tree
thru_opassign = false
- parse('a -= b', :on_opassign) {thru_opassign = true}
+ tree = parse('a -= b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
+ assert_equal "[opassign(var_field(a),-=,vcall(b))]", tree
thru_opassign = false
- parse('a *= b', :on_opassign) {thru_opassign = true}
+ tree = parse('a *= b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
+ assert_equal "[opassign(var_field(a),*=,vcall(b))]", tree
thru_opassign = false
- parse('a /= b', :on_opassign) {thru_opassign = true}
+ tree = parse('a /= b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
+ assert_equal "[opassign(var_field(a),/=,vcall(b))]", tree
thru_opassign = false
- parse('a %= b', :on_opassign) {thru_opassign = true}
+ tree = parse('a %= b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
+ assert_equal "[opassign(var_field(a),%=,vcall(b))]", tree
thru_opassign = false
- parse('a **= b', :on_opassign) {thru_opassign = true}
+ tree = parse('a **= b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
+ assert_equal "[opassign(var_field(a),**=,vcall(b))]", tree
thru_opassign = false
- parse('a &= b', :on_opassign) {thru_opassign = true}
+ tree = parse('a &= b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
+ assert_equal "[opassign(var_field(a),&=,vcall(b))]", tree
thru_opassign = false
- parse('a |= b', :on_opassign) {thru_opassign = true}
+ tree = parse('a |= b', :on_opassign) {thru_opassign = true}
+ assert_equal "[opassign(var_field(a),|=,vcall(b))]", tree
assert_equal true, thru_opassign
thru_opassign = false
- parse('a <<= b', :on_opassign) {thru_opassign = true}
+ tree = parse('a <<= b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
+ assert_equal "[opassign(var_field(a),<<=,vcall(b))]", tree
thru_opassign = false
- parse('a >>= b', :on_opassign) {thru_opassign = true}
+ tree = parse('a >>= b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
+ assert_equal "[opassign(var_field(a),>>=,vcall(b))]", tree
thru_opassign = false
- parse('a &&= b', :on_opassign) {thru_opassign = true}
+ tree = parse('a &&= b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
+ assert_equal "[opassign(var_field(a),&&=,vcall(b))]", tree
thru_opassign = false
- parse('a ||= b', :on_opassign) {thru_opassign = true}
+ tree = parse('a ||= b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
+ assert_equal "[opassign(var_field(a),||=,vcall(b))]", tree
thru_opassign = false
- parse('a::X ||= c 1', :on_opassign) {thru_opassign = true}
+ tree = parse('a::X ||= c 1', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
+ assert_equal "[opassign(const_path_field(vcall(a),X),||=,command(c,[1]))]", tree
end
def test_opassign_error