Class: Rage::OpenAPI::Parsers::Ext::Blueprinter::VisitorContext
- Inherits:
-
Object
- Object
- Rage::OpenAPI::Parsers::Ext::Blueprinter::VisitorContext
- Defined in:
- lib/rage/openapi/parsers/ext/blueprinter.rb
Instance Attribute Summary collapse
-
#keywords ⇒ Object
Returns the value of attribute keywords.
-
#strings ⇒ Object
Returns the value of attribute strings.
-
#symbols ⇒ Object
Returns the value of attribute symbols.
Instance Method Summary collapse
-
#initialize ⇒ VisitorContext
constructor
A new instance of VisitorContext.
Constructor Details
#initialize ⇒ VisitorContext
Returns a new instance of VisitorContext.
37 38 39 40 41 |
# File 'lib/rage/openapi/parsers/ext/blueprinter.rb', line 37 def initialize @symbols = [] @strings = [] @keywords = {} end |
Instance Attribute Details
#keywords ⇒ Object
Returns the value of attribute keywords.
35 36 37 |
# File 'lib/rage/openapi/parsers/ext/blueprinter.rb', line 35 def keywords @keywords end |
#strings ⇒ Object
Returns the value of attribute strings.
35 36 37 |
# File 'lib/rage/openapi/parsers/ext/blueprinter.rb', line 35 def strings @strings end |
#symbols ⇒ Object
Returns the value of attribute symbols.
35 36 37 |
# File 'lib/rage/openapi/parsers/ext/blueprinter.rb', line 35 def symbols @symbols end |