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.
550 |
# File 'sig/types.rbs', line 550
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.
547 548 549 |
# File 'sig/types.rbs', line 547 def chunk_max_size @chunk_max_size end |
#comments ⇒ Boolean?
Returns the value of attribute comments.
543 544 545 |
# File 'sig/types.rbs', line 543 def comments @comments end |
#content_mode ⇒ CodeContentMode?
Returns the value of attribute content_mode.
548 549 550 |
# File 'sig/types.rbs', line 548 def content_mode @content_mode end |
#diagnostics ⇒ Boolean?
Returns the value of attribute diagnostics.
546 547 548 |
# File 'sig/types.rbs', line 546 def diagnostics @diagnostics end |
#docstrings ⇒ Boolean?
Returns the value of attribute docstrings.
544 545 546 |
# File 'sig/types.rbs', line 544 def docstrings @docstrings end |
#exports ⇒ Boolean?
Returns the value of attribute exports.
542 543 544 |
# File 'sig/types.rbs', line 542 def exports @exports end |
#imports ⇒ Boolean?
Returns the value of attribute imports.
541 542 543 |
# File 'sig/types.rbs', line 541 def imports @imports end |
#structure ⇒ Boolean?
Returns the value of attribute structure.
540 541 542 |
# File 'sig/types.rbs', line 540 def structure @structure end |
#symbols ⇒ Boolean?
Returns the value of attribute symbols.
545 546 547 |
# File 'sig/types.rbs', line 545 def symbols @symbols end |
Class Method Details
.default ⇒ TreeSitterProcessConfig
551 |
# File 'sig/types.rbs', line 551
def self.default: () -> TreeSitterProcessConfig
|