We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01837af commit 5ed8ac3Copy full SHA for 5ed8ac3
1 file changed
rust/ruby-rbs/build.rs
@@ -126,6 +126,19 @@ fn generate(config: &Config) -> Result<(), Box<dyn Error>> {
126
)?;
127
writeln!(file, " }}")?;
128
}
129
+ "rbs_ast_declarations_class_super" => {
130
+ writeln!(
131
+ file,
132
+ " pub fn {}(&self) -> ClassSuperNode {{",
133
+ field.name
134
+ )?;
135
136
137
+ " ClassSuperNode {{ parser: self.parser, pointer: unsafe {{ (*self.pointer).{} }} }}",
138
139
140
+ writeln!(file, " }}")?;
141
+ }
142
"rbs_ast_symbol" => {
143
writeln!(file, " pub fn {}(&self) -> RBSSymbol {{", field.name)?;
144
writeln!(
0 commit comments