File tree 1 file changed +10
-8
lines changed
1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -62,15 +62,17 @@ def self.inheritance
62
62
next unless klass . ancestors . include? ( Component )
63
63
next unless klass . css
64
64
65
- if klass . superclass != Component
66
- next if klass . element != klass . superclass . element
67
- next if klass . tag && !klass . superclass . tag
68
-
69
- if a = klass . tag && b = klass . superclass . tag
70
- next if a [ :class ] != b [ :class ] || a [ :id ] != b [ :id ]
71
- end
65
+ tag = klass . tag
66
+ element = klass . element
67
+ parent = klass . superclass
68
+
69
+ if parent != Component
70
+ next if element != parent . element
71
+ next if tag && !parent . tag
72
+ next if tag && ( tag [ :class ] != parent . tag [ :class ] || tag [ :id ] != parent . tag [ :id ] )
72
73
else
73
- next if klass . tag || klass . element
74
+ next if element
75
+ next if tag && ( tag [ :class ] || tag [ :id ] )
74
76
end
75
77
76
78
if klass . name
You can’t perform that action at this time.
0 commit comments