Class: YNDK

Inherits:
TranslationTable show all
Defined in:
lib/ccls_engine/translation_table.rb

Class Method Summary collapse

Methods inherited from TranslationTable

[], selector_options, valid_values

Class Method Details

.tableObject

unique translation table



42
43
44
45
46
47
48
# File 'lib/ccls_engine/translation_table.rb', line 42

def self.table
	@@table ||= [
		{ :value => 1,   :short => 'yes', :long => "Yes" },
		{ :value => 2,   :short => 'no',  :long => "No" },
		{ :value => 999, :short => 'dk',  :long => "Don't Know" }
	]
end