Skip to content

Commit 734ba1f

Browse files
committed
Add references to rbs-inline pull request for instance variable support in TODO comments
1 parent 4f5604b commit 734ba1f

File tree

15 files changed

+15
-0
lines changed

15 files changed

+15
-0
lines changed

lib/lrama/counterexamples/example.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ class Counterexamples
66
class Example
77
# TODO: rbs-inline 0.11.0 doesn't support instance variables.
88
# Move these type declarations above instance variable definitions, once it's supported.
9+
# see: https://github.com/soutaro/rbs-inline/pull/149
910
#
1011
# @rbs!
1112
# @path1: ::Array[StateItem]

lib/lrama/digraph.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ module Lrama
2929
class Digraph
3030
# TODO: rbs-inline 0.11.0 doesn't support instance variables.
3131
# Move these type declarations above instance variable definitions, once it's supported.
32+
# see: https://github.com/soutaro/rbs-inline/pull/149
3233
#
3334
# @rbs!
3435
# interface _Or

lib/lrama/grammar/code/destructor_code.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ class Code
77
class DestructorCode < Code
88
# TODO: rbs-inline 0.11.0 doesn't support instance variables.
99
# Move these type declarations above instance variable definitions, once it's supported.
10+
# see: https://github.com/soutaro/rbs-inline/pull/149
1011
#
1112
# @rbs!
1213
# @tag: Lexer::Token::Tag

lib/lrama/grammar/code/printer_code.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ class Code
77
class PrinterCode < Code
88
# TODO: rbs-inline 0.11.0 doesn't support instance variables.
99
# Move these type declarations above instance variable definitions, once it's supported.
10+
# see: https://github.com/soutaro/rbs-inline/pull/149
1011
#
1112
# @rbs!
1213
# @tag: Lexer::Token::Tag

lib/lrama/grammar/code/rule_action.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ class Code
77
class RuleAction < Code
88
# TODO: rbs-inline 0.11.0 doesn't support instance variables.
99
# Move these type declarations above instance variable definitions, once it's supported.
10+
# see: https://github.com/soutaro/rbs-inline/pull/149
1011
#
1112
# @rbs!
1213
# @rule: Rule

lib/lrama/grammar/counter.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ class Grammar
66
class Counter
77
# TODO: rbs-inline 0.11.0 doesn't support instance variables.
88
# Move these type declarations above instance variable definitions, once it's supported.
9+
# see: https://github.com/soutaro/rbs-inline/pull/149
910
#
1011
# @rbs!
1112
# @number: Integer

lib/lrama/grammar/percent_code.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ class Grammar
66
class PercentCode
77
# TODO: rbs-inline 0.11.0 doesn't support instance variables.
88
# Move these type declarations above instance variable definitions, once it's supported.
9+
# see: https://github.com/soutaro/rbs-inline/pull/149
910
#
1011
# @rbs!
1112
# @name: String

lib/lrama/grammar/rule_builder.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ class Grammar
66
class RuleBuilder
77
# TODO: rbs-inline 0.11.0 doesn't support instance variables.
88
# Move these type declarations above instance variable definitions, once it's supported.
9+
# see: https://github.com/soutaro/rbs-inline/pull/149
910
#
1011
# @rbs!
1112
# @position_in_original_rule_rhs: Integer?

lib/lrama/grammar/type.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ class Grammar
66
class Type
77
# TODO: rbs-inline 0.11.0 doesn't support instance variables.
88
# Move these type declarations above instance variable definitions, once it's supported.
9+
# see: https://github.com/soutaro/rbs-inline/pull/149
910
#
1011
# @rbs!
1112
# @id: Lexer::Token

lib/lrama/state.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ module Lrama
1111
class State
1212
# TODO: rbs-inline 0.11.0 doesn't support instance variables.
1313
# Move these type declarations above instance variable definitions, once it's supported.
14+
# see: https://github.com/soutaro/rbs-inline/pull/149
1415
#
1516
# @rbs!
1617
# type conflict = State::ShiftReduceConflict | State::ReduceReduceConflict

lib/lrama/state/action/goto.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ class Action
77
class Goto
88
# TODO: rbs-inline 0.11.0 doesn't support instance variables.
99
# Move these type declarations above instance variable definitions, once it's supported.
10+
# see: https://github.com/soutaro/rbs-inline/pull/149
1011
#
1112
# @rbs!
1213
# @from_state: State

lib/lrama/state/action/reduce.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ class Action
77
class Reduce
88
# TODO: rbs-inline 0.11.0 doesn't support instance variables.
99
# Move these type declarations above instance variable definitions, once it's supported.
10+
# see: https://github.com/soutaro/rbs-inline/pull/149
1011
#
1112
# @rbs!
1213
# @item: States::Item

lib/lrama/state/action/shift.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ class Action
77
class Shift
88
# TODO: rbs-inline 0.11.0 doesn't support instance variables.
99
# Move these type declarations above instance variable definitions, once it's supported.
10+
# see: https://github.com/soutaro/rbs-inline/pull/149
1011
#
1112
# @rbs!
1213
# @from_state: State

lib/lrama/states.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ module Lrama
1313
class States
1414
# TODO: rbs-inline 0.11.0 doesn't support instance variables.
1515
# Move these type declarations above instance variable definitions, once it's supported.
16+
# see: https://github.com/soutaro/rbs-inline/pull/149
1617
#
1718
# @rbs!
1819
# type state_id = Integer

lib/lrama/tracer/duration.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ class Tracer
66
module Duration
77
# TODO: rbs-inline 0.11.0 doesn't support instance variables.
88
# Move these type declarations above instance variable definitions, once it's supported.
9+
# see: https://github.com/soutaro/rbs-inline/pull/149
910
#
1011
# @rbs!
1112
# @_report_duration_enabled: bool

0 commit comments

Comments
 (0)