Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 16d8313 + e1aa98e commit 5279c7eCopy full SHA for 5279c7e
lib/coderay/scanners/sql.rb
@@ -96,7 +96,7 @@ def scan_tokens encoder, options
96
state = :string
97
encoder.text_token match, :delimiter
98
99
- elsif match = scan(/ @? [A-Za-z_][A-Za-z_0-9]* /x)
+ elsif match = scan(/ @? [A-Za-z_][A-Za-z_0-9\$]* /x)
100
encoder.text_token match, name_expected ? :ident : (match[0] == ?@ ? :variable : IDENT_KIND[match])
101
name_expected = false
102
0 commit comments