We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c877bf commit dd9ec43Copy full SHA for dd9ec43
lib/coderay/scanners/go.rb
@@ -37,14 +37,9 @@ class Go < Scanner
37
make new panic print println real recover
38
] # :nodoc:
39
40
- DIRECTIVES = [
41
- 'go_no_directive', # Seems no directive concept in Go?
42
- ] # :nodoc:
43
-
44
IDENT_KIND = WordList.new(:ident).
45
add(KEYWORDS, :keyword).
46
add(PREDEFINED_TYPES, :predefined_type).
47
- add(DIRECTIVES, :directive).
48
add(PREDEFINED_CONSTANTS, :predefined_constant).
49
add(PREDEFINED_FUNCTIONS, :predefined) # :nodoc:
50
0 commit comments