Class: Liquidscript::Compiler::Base::Blank
- Inherits:
 - 
      Object
      
        
- Object
 - Liquidscript::Compiler::Base::Blank
 
 
- Defined in:
 - lib/liquidscript/compiler/base/blank.rb
 
Overview
Responds to all methods with ‘nil`.
Instance Method Summary collapse
- 
  
    
      #method_missing(*_, &block)  ⇒ nil 
    
    
  
  
  
  
  
  
  
  
  
    
Respond to all methods, with ‘nil`.
 - 
  
    
      #respond_to_missing?(_, __)  ⇒ true 
    
    
  
  
  
  
  
  
  
  
  
    
Tells Ruby that we respond to all methods.
 
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(*_, &block) ⇒ nil
Respond to all methods, with ‘nil`.
      11 12 13  | 
    
      # File 'lib/liquidscript/compiler/base/blank.rb', line 11 def method_missing(*_, &block) nil end  | 
  
Instance Method Details
#respond_to_missing?(_, __) ⇒ true
Tells Ruby that we respond to all methods.
      18 19 20  | 
    
      # File 'lib/liquidscript/compiler/base/blank.rb', line 18 def respond_to_missing?(_, __) true end  |