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/java.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/coderay/scanners/java.rb') diff --git a/lib/coderay/scanners/java.rb b/lib/coderay/scanners/java.rb index ef3d8f8..0ad8a41 100644 --- a/lib/coderay/scanners/java.rb +++ b/lib/coderay/scanners/java.rb @@ -30,10 +30,10 @@ module Scanners IDENT_KIND = WordList.new(:ident). add(KEYWORDS, :keyword). add(RESERVED, :reserved). - add(CONSTANTS, :pre_constant). + add(CONSTANTS, :predefined_constant). add(MAGIC_VARIABLES, :local_variable). add(TYPES, :type). - add(BuiltinTypes::List, :pre_type). + add(BuiltinTypes::List, :predefined_type). add(BuiltinTypes::List.select { |builtin| builtin[/(Error|Exception)$/] }, :exception). add(DIRECTIVES, :directive) # :nodoc: -- cgit v1.2.1