-
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add classes for
masgn
and mlhs
nodes.
- Loading branch information
1 parent
0b334f8
commit 122ed4b
Showing
8 changed files
with
268 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* [#203](https://github.com/rubocop-hq/rubocop-ast/pull/203): Add classes for `masgn` and `mlhs` nodes. ([@dvandersluis][]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# frozen_string_literal: true | ||
|
||
module RuboCop | ||
module AST | ||
# A node extension for `masgn` nodes. | ||
# This will be used in place of a plain node when the builder constructs | ||
# the AST, making its methods available to all assignment nodes within RuboCop. | ||
class MasgnNode < Node | ||
# @return [MlhsNode] the `mlhs` node | ||
def lhs | ||
# The first child is a `mlhs` node | ||
node_parts[0] | ||
end | ||
|
||
# @return [Array<Node>] the assignment nodes of the multiple assignment | ||
def assignments | ||
lhs.assignments | ||
end | ||
|
||
# @return [Array<Symbol>] names of all the variables being assigned | ||
def names | ||
assignments.map do |assignment| | ||
if assignment.send_type? || assignment.indexasgn_type? | ||
assignment.method_name | ||
else | ||
assignment.name | ||
end | ||
end | ||
end | ||
|
||
# The RHS (right hand side) of the multiple assignment. This returns | ||
# the nodes as parsed: either a single node if the RHS has a single value, | ||
# or an `array` node containing multiple nodes. | ||
# | ||
# NOTE: Due to how parsing works, `expression` will return the same for | ||
# `a, b = x, y` and `a, b = [x, y]`. | ||
# | ||
# @return [Node] the right hand side of a multiple assignment. | ||
def expression | ||
node_parts[1] | ||
end | ||
alias rhs expression | ||
|
||
# In contrast to `expression`, `values` always returns a Ruby array | ||
# containing all the nodes being assigned on the RHS. | ||
# | ||
# Literal arrays are considered a singular value; but unlike `expression`, | ||
# implied `array` nodes from assigning multiple values on the RHS are treated | ||
# as separate. | ||
# | ||
# @return [Array<Node>] individual values being assigned on the RHS of the multiple assignment | ||
def values | ||
multiple_rhs? ? expression.children : [expression] | ||
end | ||
|
||
private | ||
|
||
def multiple_rhs? | ||
expression.array_type? && !expression.bracketed? | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# frozen_string_literal: true | ||
|
||
module RuboCop | ||
module AST | ||
# A node extension for `mlhs` nodes. | ||
# This will be used in place of a plain node when the builder constructs | ||
# the AST, making its methods available to all assignment nodes within RuboCop. | ||
class MlhsNode < Node | ||
# Returns all the assignment nodes on the left hand side (LHS) of a multiple assignment. | ||
# These are generally assignment nodes (`lvasgn`, `ivasgn`, `cvasgn`, `gvasgn`, `casgn`) | ||
# but can also be `send` nodes in case of `foo.bar, ... =` or `foo[:bar], ... =`. | ||
# | ||
# @return [Array<Node>] the assignment nodes of the multiple assignment LHS | ||
def assignments | ||
child_nodes.flat_map do |node| | ||
if node.splat_type? | ||
node.child_nodes.first | ||
elsif node.mlhs_type? | ||
node.assignments | ||
else | ||
node | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
# frozen_string_literal: true | ||
|
||
RSpec.describe RuboCop::AST::MasgnNode do | ||
let(:masgn_node) { parse_source(source).ast } | ||
let(:source) { 'x, y = z' } | ||
|
||
describe '.new' do | ||
context 'with a `masgn` node' do | ||
it { expect(masgn_node).to be_a(described_class) } | ||
end | ||
end | ||
|
||
describe '#names' do | ||
subject { masgn_node.names } | ||
|
||
let(:source) { 'a, @b, @@c, $d, E, *f = z' } | ||
|
||
it { is_expected.to eq(%i[a @b @@c $d E f]) } | ||
|
||
context 'with nested `mlhs` nodes' do | ||
let(:source) { 'a, (b, c) = z' } | ||
|
||
it { is_expected.to eq(%i[a b c]) } | ||
end | ||
|
||
context 'with array setter' do | ||
let(:source) { 'a, b[c] = z' } | ||
|
||
it { is_expected.to eq(%i[a []=]) } | ||
end | ||
|
||
context 'with a method chain' do | ||
let(:source) { 'a, b.c = z' } | ||
|
||
it { is_expected.to eq(%i[a c=]) } | ||
end | ||
end | ||
|
||
describe '#expression' do | ||
include AST::Sexp | ||
|
||
subject { masgn_node.expression } | ||
|
||
context 'with a single RHS value' do | ||
it { is_expected.to eq(s(:send, nil, :z)) } | ||
end | ||
|
||
context 'with multiple RHS values' do | ||
let(:source) { 'x, y = 1, 2' } | ||
|
||
it { is_expected.to eq(s(:array, s(:int, 1), s(:int, 2))) } | ||
end | ||
end | ||
|
||
describe '#values' do | ||
include AST::Sexp | ||
|
||
subject { masgn_node.values } | ||
|
||
context 'when the RHS has a single value' do | ||
let(:source) { 'x, y = z' } | ||
|
||
it { is_expected.to eq([s(:send, nil, :z)]) } | ||
end | ||
|
||
context 'when the RHS is an array literal' do | ||
let(:source) { 'x, y = [z, a]' } | ||
|
||
it { is_expected.to eq([s(:array, s(:send, nil, :z), s(:send, nil, :a))]) } | ||
end | ||
|
||
context 'when the RHS has a multiple values' do | ||
let(:source) { 'x, y = u, v' } | ||
|
||
it { is_expected.to eq([s(:send, nil, :u), s(:send, nil, :v)]) } | ||
end | ||
|
||
context 'when the RHS has a splat' do | ||
let(:source) { 'x, y = *z' } | ||
|
||
it { is_expected.to eq([s(:splat, s(:send, nil, :z))]) } | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
# frozen_string_literal: true | ||
|
||
RSpec.describe RuboCop::AST::MlhsNode do | ||
let(:mlhs_node) { parse_source(source).ast.node_parts[0] } | ||
|
||
describe '.new' do | ||
context 'with a `masgn` node' do | ||
let(:source) { 'x, y = z' } | ||
|
||
it { expect(mlhs_node).to be_a(described_class) } | ||
end | ||
end | ||
|
||
describe '#assignments' do | ||
include AST::Sexp | ||
|
||
subject { mlhs_node.assignments } | ||
|
||
context 'with variables' do | ||
let(:source) { 'x, y = z' } | ||
|
||
it { is_expected.to eq([s(:lvasgn, :x), s(:lvasgn, :y)]) } | ||
end | ||
|
||
context 'with a splat' do | ||
let(:source) { 'x, *y = z' } | ||
|
||
it { is_expected.to eq([s(:lvasgn, :x), s(:lvasgn, :y)]) } | ||
end | ||
|
||
context 'with nested `mlhs` nodes' do | ||
let(:source) { 'a, (b, c) = z' } | ||
|
||
it { is_expected.to eq([s(:lvasgn, :a), s(:lvasgn, :b), s(:lvasgn, :c)]) } | ||
end | ||
|
||
context 'with different variable types' do | ||
let(:source) { 'a, @b, @@c, $d, E, *f = z' } | ||
let(:expected_nodes) do | ||
[ | ||
s(:lvasgn, :a), | ||
s(:ivasgn, :@b), | ||
s(:cvasgn, :@@c), | ||
s(:gvasgn, :$d), | ||
s(:casgn, nil, :E), | ||
s(:lvasgn, :f) | ||
] | ||
end | ||
|
||
it { is_expected.to eq(expected_nodes) } | ||
end | ||
|
||
context 'with assignment on RHS' do | ||
let(:source) { 'x, y = 1, z += 2' } | ||
|
||
it { is_expected.to eq([s(:lvasgn, :x), s(:lvasgn, :y)]) } | ||
end | ||
|
||
context 'with nested assignment on LHS' do | ||
let(:source) { 'a, b[c+=1] = z' } | ||
|
||
if RuboCop::AST::Builder.emit_index | ||
let(:expected_nodes) do | ||
[ | ||
s(:lvasgn, :a), | ||
s(:indexasgn, | ||
s(:send, nil, :b), | ||
s(:op_asgn, | ||
s(:lvasgn, :c), :+, s(:int, 1))) | ||
] | ||
end | ||
else | ||
let(:expected_nodes) do | ||
[ | ||
s(:lvasgn, :a), | ||
s(:send, | ||
s(:send, nil, :b), :[]=, | ||
s(:op_asgn, | ||
s(:lvasgn, :c), :+, s(:int, 1))) | ||
] | ||
end | ||
end | ||
|
||
it { is_expected.to eq(expected_nodes) } | ||
end | ||
end | ||
end |