class Rouge::Lexers::Nasm

def self.reserved

def self.reserved
  @reserved ||= Set.new %w(
    global extern macro endmacro assign rep endrep section
    GLOBAL EXTERN MACRO ENDMACRO ASSIGN REP ENDREP SECTION
  )
end