Class: RBS::AST::Ruby::CommentBlock
- Inherits:
-
Object
- Object
- RBS::AST::Ruby::CommentBlock
- Defined in:
- lib/rbs/ast/ruby/comment_block.rb
Constant Summary collapse
- AnnotationSyntaxError =
_ = Struct.new(:location, :error)
Instance Attribute Summary collapse
-
#comment_buffer ⇒ Object
readonly
Returns the value of attribute comment_buffer.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#offsets ⇒ Object
readonly
Returns the value of attribute offsets.
Class Method Summary collapse
Instance Method Summary collapse
- #as_comment ⇒ Object
- #comments ⇒ Object
- #each_paragraph(variables, &block) ⇒ Object
- #end_line ⇒ Object
-
#initialize(source_buffer, comments) ⇒ CommentBlock
constructor
A new instance of CommentBlock.
- #leading? ⇒ Boolean
- #leading_annotation?(index) ⇒ Boolean
- #line_location(start_line, end_line) ⇒ Object
- #line_starts ⇒ Object
- #location ⇒ Object
- #parse_annotation_lines(start_line, end_line, variables) ⇒ Object
- #start_line ⇒ Object
- #text(comment_index) ⇒ Object
- #trailing? ⇒ Boolean
- #trailing_annotation(variables) ⇒ Object
- #yield_annotation(start_line, end_line, current_line, variables, &block) ⇒ Object
- #yield_paragraph(start_line, current_line, variables, &block) ⇒ Object
Constructor Details
#initialize(source_buffer, comments) ⇒ CommentBlock
Returns a new instance of CommentBlock.
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 9 def initialize(source_buffer, comments) @name = source_buffer.name @offsets = [] # Assume the comment starts with a prefix whitespace prefix_str = "# " ranges = [] #: Array[Range[Integer]] byte_ranges = [] #: Array[Range[Integer]] comments.each do |comment| tuple = [comment, 2] #: [Prism::Comment, Integer] unless comment.location.slice.start_with?(prefix_str) tuple[1] = 1 end offsets << tuple start_char = source_buffer.character_offset(comment.location.start_offset) + tuple[1] end_char = source_buffer.character_offset(comment.location.end_offset) ranges << (start_char ... end_char) byte_ranges << ((comment.location.start_offset + tuple[1]) ... comment.location.end_offset) end @comment_buffer = source_buffer.sub_buffer(lines: ranges, byte_lines_hint: byte_ranges) end |
Instance Attribute Details
#comment_buffer ⇒ Object (readonly)
Returns the value of attribute comment_buffer.
7 8 9 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 7 def comment_buffer @comment_buffer end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
7 8 9 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 7 def name @name end |
#offsets ⇒ Object (readonly)
Returns the value of attribute offsets.
7 8 9 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 7 def offsets @offsets end |
Class Method Details
.build(buffer, comments) ⇒ Object
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 62 def self.build(buffer, comments) blocks = [] #: Array[CommentBlock] comments = comments.filter {|comment| comment.is_a?(Prism::InlineComment) } until comments.empty? block_comments = [] #: Array[Prism::Comment] until comments.empty? comment = comments.first or raise last_comment = block_comments.last if last_comment if last_comment.location.end_line + 1 == comment.location.start_line if last_comment.location.start_column == comment.location.start_column unless comment.location.start_line_slice.index(/\S/) block_comments << comments.shift next end end end break else block_comments << comments.shift end end unless block_comments.empty? blocks << CommentBlock.new(buffer, block_comments.dup) end end blocks end |
Instance Method Details
#as_comment ⇒ Object
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 228 def as_comment lines = [] #: Array[String] each_paragraph([]) do |paragraph| case paragraph when Location lines << paragraph.local_source end end string = lines.join("\n") unless string.strip.empty? AST::Comment.new(string: string, location: location) end end |
#comments ⇒ Object
213 214 215 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 213 def comments offsets.map { _1[0]} end |
#each_paragraph(variables, &block) ⇒ Object
100 101 102 103 104 105 106 107 108 109 110 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 100 def each_paragraph(variables, &block) if block if leading_annotation?(0) yield_annotation(0, 0, 0, variables, &block) else yield_paragraph(0, 0, variables, &block) end else enum_for :each_paragraph, variables end end |
#end_line ⇒ Object
52 53 54 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 52 def end_line comments[-1].location.end_line end |
#leading? ⇒ Boolean
38 39 40 41 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 38 def leading? comment = offsets[0][0] or raise comment.location.start_line_slice.index(/\S/) ? false : true end |
#leading_annotation?(index) ⇒ Boolean
217 218 219 220 221 222 223 224 225 226 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 217 def leading_annotation?(index) if index < comment_buffer.line_count text(index).start_with?(/@rbs\b/) and return true comment = offsets[index][0] comment.location.slice.start_with?(/\#:/) and return true end false end |
#line_location(start_line, end_line) ⇒ Object
176 177 178 179 180 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 176 def line_location(start_line, end_line) start_offset = comment_buffer.ranges[start_line].begin end_offset = comment_buffer.ranges[end_line].end Location.new(comment_buffer, start_offset, end_offset) end |
#line_starts ⇒ Object
56 57 58 59 60 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 56 def line_starts offsets.map do |comment, prefix_size| comment_buffer.character_offset(comment.location.start_offset) + prefix_size end end |
#location ⇒ Object
182 183 184 185 186 187 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 182 def location() first_comment = comments[0] or raise last_comment = comments[-1] or raise comment_buffer.rbs_location(first_comment.location.join last_comment.location) end |
#parse_annotation_lines(start_line, end_line, variables) ⇒ Object
189 190 191 192 193 194 195 196 197 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 189 def parse_annotation_lines(start_line, end_line, variables) start_pos = comment_buffer.ranges[start_line].begin end_pos = comment_buffer.ranges[end_line].end begin Parser.parse_inline_leading_annotation(comment_buffer, start_pos...end_pos, variables: variables) rescue ParsingError => error AnnotationSyntaxError.new(line_location(start_line, end_line), error) end end |
#start_line ⇒ Object
48 49 50 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 48 def start_line comments[0].location.start_line end |
#text(comment_index) ⇒ Object
171 172 173 174 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 171 def text(comment_index) range = comment_buffer.ranges[comment_index] comment_buffer.content[range] or raise end |
#trailing? ⇒ Boolean
43 44 45 46 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 43 def trailing? comment = offsets[0][0] or raise comment.location.start_line_slice.index(/\S/) ? true : false end |
#trailing_annotation(variables) ⇒ Object
199 200 201 202 203 204 205 206 207 208 209 210 211 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 199 def trailing_annotation(variables) if trailing? comment = comments[0] or raise if comment.location.slice.start_with?(/#[:\[]/) begin Parser.parse_inline_trailing_annotation(comment_buffer, 0...comment_buffer.last_position, variables: variables) rescue ParsingError => error location = line_location(0, offsets.size - 1) AnnotationSyntaxError.new(location, error) end end end end |
#yield_annotation(start_line, end_line, current_line, variables, &block) ⇒ Object
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 132 def yield_annotation(start_line, end_line, current_line, variables, &block) # We already know at start_line..end_line are annotation. while true next_line = current_line + 1 if next_line >= comment_buffer.line_count annotation = parse_annotation_lines(start_line, end_line, variables) yield annotation if end_line > current_line yield_paragraph(end_line + 1, end_line + 1, variables, &block) end return end line_text = text(next_line) if leading_spaces = line_text.index(/\S/) if leading_spaces == 0 # End of annotation yield parse_annotation_lines(start_line, end_line, variables) if leading_annotation?(end_line + 1) yield_annotation(end_line + 1, end_line + 1, end_line + 1, variables, &block) else yield_paragraph(end_line + 1, end_line + 1, variables, &block) end return else current_line = next_line end_line = next_line end else current_line = next_line end end end |
#yield_paragraph(start_line, current_line, variables, &block) ⇒ Object
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 112 def yield_paragraph(start_line, current_line, variables, &block) # We already know at start_line..current_line are paragraph. while true next_line = current_line + 1 if next_line >= comment_buffer.line_count yield line_location(start_line, current_line) return end if leading_annotation?(next_line) yield line_location(start_line, current_line) return yield_annotation(next_line, next_line, next_line, variables, &block) else current_line = next_line end end end |