本文简要介绍ruby语言中 RDoc::Parser::Ruby.parse_meta_attr
的用法。
用法
parse_meta_attr(context, single, tk, comment)
解析 meta-programmed 属性并创建 RDoc::Attr
。
要使用注释 “My attributes” 在 C 类上创建 foo 和 bar 属性:
class C
##
# :attr:
#
# My attributes
my_attr :foo, :bar
end
要使用注释 “My attribute” 在 C 类上创建 foo 属性:
class C
##
# :attr: foo
#
# My attribute
my_attr :foo, :bar
end
相关用法
- Ruby Ruby.parse_method_parameters用法及代码示例
- Ruby Ruby.look_for_directives_in用法及代码示例
- Ruby Ruby.read_directive用法及代码示例
- Ruby RubyVM.stat用法及代码示例
- Ruby RuntimeError类用法及代码示例
- Ruby Range.end用法及代码示例
- Ruby Regexp named_captures()用法及代码示例
- Ruby Ractor.receive_if用法及代码示例
- Ruby Range new()用法及代码示例
- Ruby Rational.inspect用法及代码示例
- Ruby Random.bytes用法及代码示例
- Ruby Random hex()用法及代码示例
- Ruby RFC2396_Parser.parse用法及代码示例
- Ruby Range.size用法及代码示例
- Ruby Rational.rational <=>用法及代码示例
- Ruby Recorder类用法及代码示例
- Ruby RFC2396_Parser.new用法及代码示例
- Ruby Regexp to_s()用法及代码示例
- Ruby Regexp.eql?用法及代码示例
- Ruby Row.delete用法及代码示例
- Ruby Rational to_i()用法及代码示例
- Ruby Regexp hash()用法及代码示例
- Ruby Resolution.new用法及代码示例
- Ruby Regexp.fixed_encoding?用法及代码示例
- Ruby Rational.rat ** numeric用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Ruby.parse_meta_attr。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。