chore: bump scintilla and lexilla version
This commit is contained in:
124
3rdparty/lexilla545/lexilla/test/examples/ruby/AllStyles.rb
vendored
Normal file
124
3rdparty/lexilla545/lexilla/test/examples/ruby/AllStyles.rb
vendored
Normal file
@ -0,0 +1,124 @@
|
||||
# Enumerate all styles where possible: 0..31,40..45
|
||||
# 30,31,40,45 are never set and 1 switches rest of file to error state
|
||||
|
||||
#0 whitespace
|
||||
#
|
||||
#
|
||||
|
||||
#1:error, can be set with a heredoc delimiter >256 characters but that can't be recovered from
|
||||
#<<ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789
|
||||
|
||||
#2:comment line
|
||||
|
||||
#3:POD
|
||||
=begin
|
||||
3:POD
|
||||
=end
|
||||
|
||||
#4:number
|
||||
4
|
||||
|
||||
#5:word
|
||||
super
|
||||
|
||||
#6:string
|
||||
"6:double quotes"
|
||||
|
||||
#7:single quoted string
|
||||
'7:single quotes'
|
||||
|
||||
#8:class name
|
||||
class ClassName end
|
||||
|
||||
#9:def name
|
||||
def Function end
|
||||
|
||||
#10:operator
|
||||
&
|
||||
|
||||
#11:identifier
|
||||
identifier
|
||||
|
||||
#12:regex
|
||||
/[12a-z]/
|
||||
|
||||
#13:global
|
||||
$global13
|
||||
|
||||
#14:symbol
|
||||
:symbol14
|
||||
|
||||
#15:module name
|
||||
module Module15 end
|
||||
|
||||
#16:instance var
|
||||
@instance16
|
||||
|
||||
#17:class var
|
||||
@@class17
|
||||
|
||||
#18:back ticks
|
||||
`18`
|
||||
|
||||
#19:data section at end of file
|
||||
|
||||
#20:here delimiter
|
||||
<<DELIMITER20
|
||||
DELIMITER20
|
||||
|
||||
#21:single quoted heredoc
|
||||
<<'D'
|
||||
21:here doc #{1 + 1}
|
||||
D
|
||||
|
||||
#22:double quoted heredoc
|
||||
<<"D"
|
||||
22:here doc #{1 + 1}
|
||||
D
|
||||
|
||||
#23:back tick quoted heredoc
|
||||
<<`D`
|
||||
23:here doc #{1 + 1}
|
||||
D
|
||||
|
||||
#24:q quoted string
|
||||
%q!24:quotes's!
|
||||
|
||||
#25:Q quoted string
|
||||
%Q!25:quotes"s!
|
||||
|
||||
#26:executed string
|
||||
%x(echo 26)
|
||||
|
||||
#27:regex
|
||||
%r(27[a-z]/[A-Z]+)
|
||||
|
||||
#28:interpolable string array
|
||||
%W(28 cgi.rb complex.rb date.rb #{1} )
|
||||
|
||||
#29:demoted keyword do
|
||||
while 1 do end
|
||||
|
||||
# 30,31,40,45 never set
|
||||
|
||||
#41:non-interpolable string array
|
||||
%w(#{1 + 1})
|
||||
|
||||
#42:non-interpolable symbol array
|
||||
%i(#{1 + 1})
|
||||
|
||||
#43:interpolable symbol array
|
||||
%I(#{1 + 1})
|
||||
|
||||
#44:symbol
|
||||
%s(#{1 + 1})
|
||||
|
||||
#128:user keywords 1
|
||||
decrypt
|
||||
|
||||
#129:user keywords 2
|
||||
encrypt
|
||||
|
||||
#19:data section
|
||||
__END__
|
||||
|
Reference in New Issue
Block a user