class Rouge::Lexers::Cython

Public Class Methods

c_keywords() click to toggle source
# File lib/rouge/lexers/cython.rb, line 26
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 20
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 15
def initialize(opts = {})
  super opts
  @indentation = nil
end