Module: Mutant::AST::Nodes Private
- Extended by:
- Sexp
- Included in:
- Mutator::Node, Mutator::Node::Super, Mutator::Node::ZSuper
- Defined in:
- lib/mutant/ast/nodes.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Singleton nodes
Constant Summary collapse
- N_NAN =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
s(:send, s(:float, 0.0), :/, s(:float, 0.0))
- N_INFINITY =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
s(:send, s(:float, 1.0), :/, s(:float, 0.0))
- N_NEGATIVE_INFINITY =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
s(:send, s(:float, -1.0), :/, s(:float, 0.0))
- N_RAISE =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
s(:send, nil, :raise)
- N_TRUE =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
s(:true)
- N_FALSE =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
s(:false)
- N_NIL =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
s(:nil)
- N_EMPTY =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
s(:empty)
- N_SELF =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
s(:self)
- N_ZSUPER =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
s(:zsuper)
- N_EMPTY_SUPER =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
s(:super)
- N_EMPTY_ARRAY =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
s(:array)
- N_EMPTY_HASH =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
s(:hash)
- N_EMPTY_STRING =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
s(:str, '')
- N_ZERO_INTEGER =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
s(:int, 0)
- N_ZERO_FLOAT =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
s(:float, 0.0)