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.
-
#data_extraction ⇒ Boolean?
Returns the value of attribute data_extraction.
-
#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.
609 |
# File 'sig/types.rbs', line 609
def initialize: (?structure: bool, ?imports: bool, ?exports: bool, ?comments: bool, ?docstrings: bool, ?symbols: bool, ?diagnostics: bool, ?data_extraction: bool, ?chunk_max_size: Integer, ?content_mode: CodeContentMode) -> void
|
Instance Attribute Details
#chunk_max_size ⇒ Integer?
Returns the value of attribute chunk_max_size.
606 607 608 |
# File 'sig/types.rbs', line 606 def chunk_max_size @chunk_max_size end |
#comments ⇒ Boolean?
Returns the value of attribute comments.
601 602 603 |
# File 'sig/types.rbs', line 601 def comments @comments end |
#content_mode ⇒ CodeContentMode?
Returns the value of attribute content_mode.
607 608 609 |
# File 'sig/types.rbs', line 607 def content_mode @content_mode end |
#data_extraction ⇒ Boolean?
Returns the value of attribute data_extraction.
605 606 607 |
# File 'sig/types.rbs', line 605 def data_extraction @data_extraction end |
#diagnostics ⇒ Boolean?
Returns the value of attribute diagnostics.
604 605 606 |
# File 'sig/types.rbs', line 604 def diagnostics @diagnostics end |
#docstrings ⇒ Boolean?
Returns the value of attribute docstrings.
602 603 604 |
# File 'sig/types.rbs', line 602 def docstrings @docstrings end |
#exports ⇒ Boolean?
Returns the value of attribute exports.
600 601 602 |
# File 'sig/types.rbs', line 600 def exports @exports end |
#imports ⇒ Boolean?
Returns the value of attribute imports.
599 600 601 |
# File 'sig/types.rbs', line 599 def imports @imports end |
#structure ⇒ Boolean?
Returns the value of attribute structure.
598 599 600 |
# File 'sig/types.rbs', line 598 def structure @structure end |
#symbols ⇒ Boolean?
Returns the value of attribute symbols.
603 604 605 |
# File 'sig/types.rbs', line 603 def symbols @symbols end |
Class Method Details
.default ⇒ TreeSitterProcessConfig
610 |
# File 'sig/types.rbs', line 610
def self.default: () -> TreeSitterProcessConfig
|