From d8c9161dc174e364fc4a3e8e9df1d45262c5cc4a Mon Sep 17 00:00:00 2001 From: murphy Date: Sun, 17 Apr 2011 14:03:02 +0000 Subject: renamed pre_* token kinds to predefined_* --- lib/coderay/scanners/php.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/coderay/scanners/php.rb') diff --git a/lib/coderay/scanners/php.rb b/lib/coderay/scanners/php.rb index 7f09de9..ed1095e 100644 --- a/lib/coderay/scanners/php.rb +++ b/lib/coderay/scanners/php.rb @@ -183,12 +183,12 @@ module Scanners IDENT_KIND = CaseIgnoringWordList.new(:ident). add(KEYWORDS, :reserved). - add(TYPES, :pre_type). + add(TYPES, :predefined_type). add(LANGUAGE_CONSTRUCTS, :reserved). add(BUILTIN_FUNCTIONS, :predefined). - add(CLASSES, :pre_constant). + add(CLASSES, :predefined_constant). add(EXCEPTIONS, :exception). - add(CONSTANTS, :pre_constant) + add(CONSTANTS, :predefined_constant) VARIABLE_KIND = WordList.new(:local_variable). add(PREDEFINED, :predefined) -- cgit v1.2.1