Class: Parser::VariablesStack Private
Overview
This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.
source://parser//lib/parser/variables_stack.rb#5
Instance Method Summary collapse
- 
  
    
      #declare(name)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  private
  
    
source://parser//lib/parser/variables_stack.rb#27.
 - 
  
    
      #declared?(name)  ⇒ Boolean 
    
    
  
  
  
  
  
  
  
  private
  
    
source://parser//lib/parser/variables_stack.rb#31.
 - 
  
    
      #empty?  ⇒ Boolean 
    
    
  
  
  
  
  
  
  
  private
  
    
source://parser//lib/parser/variables_stack.rb#11.
 - 
  
    
      #initialize  ⇒ VariablesStack 
    
    
  
  
  
    constructor
  
  
  
  
  
  private
  
    
source://parser//lib/parser/variables_stack.rb#6.
 - 
  
    
      #pop  ⇒ Object 
    
    
  
  
  
  
  
  
  
  private
  
    
source://parser//lib/parser/variables_stack.rb#19.
 - 
  
    
      #push  ⇒ Object 
    
    
  
  
  
  
  
  
  
  private
  
    
source://parser//lib/parser/variables_stack.rb#15.
 - 
  
    
      #reset  ⇒ Object 
    
    
  
  
  
  
  
  
  
  private
  
    
source://parser//lib/parser/variables_stack.rb#23.
 
Constructor Details
#initialize ⇒ VariablesStack
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
source://parser//lib/parser/variables_stack.rb#6
      7315  | 
    
      # File 'sorbet/rbi/parser@3.3.8.0.rbi', line 7315 def initialize; end  | 
  
Instance Method Details
#declare(name) ⇒ Object
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
source://parser//lib/parser/variables_stack.rb#27
      7318  | 
    
      # File 'sorbet/rbi/parser@3.3.8.0.rbi', line 7318 def declare(name); end  | 
  
#declared?(name) ⇒ Boolean
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
source://parser//lib/parser/variables_stack.rb#31
      7323  | 
    
      # File 'sorbet/rbi/parser@3.3.8.0.rbi', line 7323 def declared?(name); end  | 
  
#empty? ⇒ Boolean
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
source://parser//lib/parser/variables_stack.rb#11
      7328  | 
    
      # File 'sorbet/rbi/parser@3.3.8.0.rbi', line 7328 def empty?; end  | 
  
#pop ⇒ Object
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
source://parser//lib/parser/variables_stack.rb#19
      7331  | 
    
      # File 'sorbet/rbi/parser@3.3.8.0.rbi', line 7331 def pop; end  | 
  
#push ⇒ Object
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
source://parser//lib/parser/variables_stack.rb#15
      7334  | 
    
      # File 'sorbet/rbi/parser@3.3.8.0.rbi', line 7334 def push; end  | 
  
#reset ⇒ Object
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
source://parser//lib/parser/variables_stack.rb#23
      7337  | 
    
      # File 'sorbet/rbi/parser@3.3.8.0.rbi', line 7337 def reset; end  |