fix or remove tests (language syntax changing)
This commit is contained in:
17
lib/skip/call_site.rb
Normal file
17
lib/skip/call_site.rb
Normal file
@ -0,0 +1,17 @@
|
||||
module Parser
|
||||
module CallSite
|
||||
include output
|
||||
|
||||
rule(:argument_list) {
|
||||
left_parenthesis >>
|
||||
( ((operator_expression|value_expression).as(:argument) >> space? >>
|
||||
(comma >> space? >> (operator_expression|value_expression).as(:argument)).repeat(0)).repeat(0,1)).as(:argument_list) >>
|
||||
space? >> right_parenthesis
|
||||
}
|
||||
|
||||
rule(:call_site) { ((module_name|instance_variable|basic_type).as(:receiver) >> str(".")).maybe >> #possibly qualified
|
||||
name.as(:call_site) >> argument_list >> comment.maybe}
|
||||
|
||||
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user