class Rouge::Lexers::Cython
Public Class Methods
c_keywords()
click to toggle source
# File lib/rouge/lexers/cython.rb, line 25 def self.c_keywords @ckeywords ||= %w( public readonly extern api inline enum union ) end
keywords()
click to toggle source
Calls superclass method
# File lib/rouge/lexers/cython.rb, line 19 def self.keywords @keywords ||= super + %w( by except? fused gil nogil ) end
new(opts = {})
click to toggle source
Calls superclass method
# File lib/rouge/lexers/cython.rb, line 14 def initialize(opts = {}) super opts @indentation = nil end