Class: Xberg::TreeSitterProcessConfig
- Inherits:
-
Object
- Object
- Xberg::TreeSitterProcessConfig
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#chunk_max_size ⇒ Integer?
Returns the value of attribute chunk_max_size.
-
#comments ⇒ Boolean?
Returns the value of attribute comments.
-
#content_mode ⇒ CodeContentMode?
Returns the value of attribute content_mode.
-
#diagnostics ⇒ Boolean?
Returns the value of attribute diagnostics.
-
#docstrings ⇒ Boolean?
Returns the value of attribute docstrings.
-
#exports ⇒ Boolean?
Returns the value of attribute exports.
-
#imports ⇒ Boolean?
Returns the value of attribute imports.
-
#structure ⇒ Boolean?
Returns the value of attribute structure.
-
#symbols ⇒ Boolean?
Returns the value of attribute symbols.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ TreeSitterProcessConfig
constructor
A new instance of TreeSitterProcessConfig.
Constructor Details
#initialize ⇒ TreeSitterProcessConfig
Returns a new instance of TreeSitterProcessConfig.
581 |
# File 'sig/types.rbs', line 581
def initialize: (?structure: bool, ?imports: bool, ?exports: bool, ?comments: bool, ?docstrings: bool, ?symbols: bool, ?diagnostics: bool, ?chunk_max_size: Integer, ?content_mode: CodeContentMode) -> void
|
Instance Attribute Details
#chunk_max_size ⇒ Integer?
Returns the value of attribute chunk_max_size.
578 579 580 |
# File 'sig/types.rbs', line 578 def chunk_max_size @chunk_max_size end |
#comments ⇒ Boolean?
Returns the value of attribute comments.
574 575 576 |
# File 'sig/types.rbs', line 574 def comments @comments end |
#content_mode ⇒ CodeContentMode?
Returns the value of attribute content_mode.
579 580 581 |
# File 'sig/types.rbs', line 579 def content_mode @content_mode end |
#diagnostics ⇒ Boolean?
Returns the value of attribute diagnostics.
577 578 579 |
# File 'sig/types.rbs', line 577 def diagnostics @diagnostics end |
#docstrings ⇒ Boolean?
Returns the value of attribute docstrings.
575 576 577 |
# File 'sig/types.rbs', line 575 def docstrings @docstrings end |
#exports ⇒ Boolean?
Returns the value of attribute exports.
573 574 575 |
# File 'sig/types.rbs', line 573 def exports @exports end |
#imports ⇒ Boolean?
Returns the value of attribute imports.
572 573 574 |
# File 'sig/types.rbs', line 572 def imports @imports end |
#structure ⇒ Boolean?
Returns the value of attribute structure.
571 572 573 |
# File 'sig/types.rbs', line 571 def structure @structure end |
#symbols ⇒ Boolean?
Returns the value of attribute symbols.
576 577 578 |
# File 'sig/types.rbs', line 576 def symbols @symbols end |
Class Method Details
.default ⇒ TreeSitterProcessConfig
582 |
# File 'sig/types.rbs', line 582
def self.default: () -> TreeSitterProcessConfig
|