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 |
# 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]] 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 = comment.location.start_character_offset + tuple[1] end_char = comment.location.end_character_offset ranges << (start_char ... end_char) end @comment_buffer = source_buffer.sub_buffer(lines: 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
60 61 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 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 60 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
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 226 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
211 212 213 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 211 def comments offsets.map { _1[0]} end |
#each_paragraph(variables, &block) ⇒ Object
98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 98 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
50 51 52 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 50 def end_line comments[-1].location.end_line end |
#leading? ⇒ Boolean
36 37 38 39 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 36 def leading? comment = offsets[0][0] or raise comment.location.start_line_slice.index(/\S/) ? false : true end |
#leading_annotation?(index) ⇒ Boolean
215 216 217 218 219 220 221 222 223 224 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 215 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
174 175 176 177 178 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 174 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
54 55 56 57 58 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 54 def line_starts offsets.map do |comment, prefix_size| comment.location.start_character_offset + prefix_size end end |
#location ⇒ Object
180 181 182 183 184 185 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 180 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
187 188 189 190 191 192 193 194 195 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 187 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
46 47 48 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 46 def start_line comments[0].location.start_line end |
#text(comment_index) ⇒ Object
169 170 171 172 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 169 def text(comment_index) range = comment_buffer.ranges[comment_index] comment_buffer.content[range] or raise end |
#trailing? ⇒ Boolean
41 42 43 44 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 41 def trailing? comment = offsets[0][0] or raise comment.location.start_line_slice.index(/\S/) ? true : false end |
#trailing_annotation(variables) ⇒ Object
197 198 199 200 201 202 203 204 205 206 207 208 209 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 197 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
130 131 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 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 130 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
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
# File 'lib/rbs/ast/ruby/comment_block.rb', line 110 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 |