module SheepAst::ActionOperation

Aggregates User interface of sheep_ast library

@api public

Public Instance Methods

disable_action(name) click to toggle source
# File lib/sheep_ast/analyzer_core/action_operation.rb, line 18
def disable_action(name)
  @stage_manager.stage_get(name).ast.disable_action
end
enable_action(name) click to toggle source
# File lib/sheep_ast/analyzer_core/action_operation.rb, line 23
def enable_action(name)
  @stage_manager.stage_get(name).ast.enable_action
end