fix build under newer KConfig by bump cmake min version
This commit is contained in:
55
3rdparty/lexilla540/lexilla/test/examples/gdscript/AllStyles.gd
vendored
Normal file
55
3rdparty/lexilla540/lexilla/test/examples/gdscript/AllStyles.gd
vendored
Normal file
@ -0,0 +1,55 @@
|
||||
# Enumerate all styles: 0 to 15
|
||||
# comment=1
|
||||
|
||||
# whitespace=0
|
||||
# w
|
||||
|
||||
# number=2
|
||||
37
|
||||
|
||||
# double-quoted-string=3
|
||||
"str"
|
||||
|
||||
# single-quoted-string=4
|
||||
'str'
|
||||
|
||||
# keyword=5
|
||||
pass
|
||||
|
||||
# triple-quoted-string=6
|
||||
'''str'''
|
||||
|
||||
# triple-double-quoted-string=7
|
||||
"""str"""
|
||||
|
||||
# class-name=8
|
||||
class ClassName:
|
||||
pass
|
||||
|
||||
# function-name=9
|
||||
func function_name():
|
||||
pass
|
||||
|
||||
# operator=10
|
||||
1 + 3
|
||||
|
||||
# identifier=11
|
||||
var identifier = 2
|
||||
|
||||
# comment-block=12
|
||||
## block
|
||||
|
||||
# unclosed-string=13
|
||||
" unclosed
|
||||
|
||||
# highlighted-identifier=14
|
||||
var hilight = 2
|
||||
|
||||
# annotation=15
|
||||
@onready
|
||||
var a = 3
|
||||
@onready var b = 3
|
||||
|
||||
# node-identifier=16
|
||||
%node
|
||||
$node
|
56
3rdparty/lexilla540/lexilla/test/examples/gdscript/AllStyles.gd.folded
vendored
Normal file
56
3rdparty/lexilla540/lexilla/test/examples/gdscript/AllStyles.gd.folded
vendored
Normal file
@ -0,0 +1,56 @@
|
||||
0 400 0 # Enumerate all styles: 0 to 15
|
||||
0 400 0 # comment=1
|
||||
1 400 0
|
||||
0 400 0 # whitespace=0
|
||||
0 400 0 # w
|
||||
1 400 0
|
||||
0 400 0 # number=2
|
||||
0 400 0 37
|
||||
1 400 0
|
||||
0 400 0 # double-quoted-string=3
|
||||
0 400 0 "str"
|
||||
1 400 0
|
||||
0 400 0 # single-quoted-string=4
|
||||
0 400 0 'str'
|
||||
1 400 0
|
||||
0 400 0 # keyword=5
|
||||
0 400 0 pass
|
||||
1 400 0
|
||||
0 400 0 # triple-quoted-string=6
|
||||
0 400 0 '''str'''
|
||||
1 400 0
|
||||
0 400 0 # triple-double-quoted-string=7
|
||||
0 400 0 """str"""
|
||||
1 400 0
|
||||
0 400 0 # class-name=8
|
||||
2 400 0 + class ClassName:
|
||||
0 408 0 | pass
|
||||
1 400 0
|
||||
0 400 0 # function-name=9
|
||||
2 400 0 + func function_name():
|
||||
0 408 0 | pass
|
||||
1 400 0
|
||||
0 400 0 # operator=10
|
||||
0 400 0 1 + 3
|
||||
1 400 0
|
||||
0 400 0 # identifier=11
|
||||
0 400 0 var identifier = 2
|
||||
1 400 0
|
||||
0 400 0 # comment-block=12
|
||||
0 400 0 ## block
|
||||
1 400 0
|
||||
0 400 0 # unclosed-string=13
|
||||
0 400 0 " unclosed
|
||||
1 400 0
|
||||
0 400 0 # highlighted-identifier=14
|
||||
0 400 0 var hilight = 2
|
||||
1 400 0
|
||||
0 400 0 # annotation=15
|
||||
0 400 0 @onready
|
||||
0 400 0 var a = 3
|
||||
0 400 0 @onready var b = 3
|
||||
1 400 0
|
||||
0 400 0 # node-identifier=16
|
||||
0 400 0 %node
|
||||
0 400 0 $node
|
||||
1 400 0
|
55
3rdparty/lexilla540/lexilla/test/examples/gdscript/AllStyles.gd.styled
vendored
Normal file
55
3rdparty/lexilla540/lexilla/test/examples/gdscript/AllStyles.gd.styled
vendored
Normal file
@ -0,0 +1,55 @@
|
||||
{1}# Enumerate all styles: 0 to 15{0}
|
||||
{1}# comment=1{0}
|
||||
|
||||
{1}# whitespace=0{0}
|
||||
{1}# w{0}
|
||||
|
||||
{1}# number=2{0}
|
||||
{2}37{0}
|
||||
|
||||
{1}# double-quoted-string=3{0}
|
||||
{3}"str"{0}
|
||||
|
||||
{1}# single-quoted-string=4{0}
|
||||
{4}'str'{0}
|
||||
|
||||
{1}# keyword=5{0}
|
||||
{5}pass{0}
|
||||
|
||||
{1}# triple-quoted-string=6{0}
|
||||
{6}'''str'''{0}
|
||||
|
||||
{1}# triple-double-quoted-string=7{0}
|
||||
{7}"""str"""{0}
|
||||
|
||||
{1}# class-name=8{0}
|
||||
{5}class{0} {8}ClassName{10}:{0}
|
||||
{5}pass{0}
|
||||
|
||||
{1}# function-name=9{0}
|
||||
{5}func{0} {9}function_name{10}():{0}
|
||||
{5}pass{0}
|
||||
|
||||
{1}# operator=10{0}
|
||||
{2}1{0} {10}+{0} {2}3{0}
|
||||
|
||||
{1}# identifier=11{0}
|
||||
{5}var{0} {11}identifier{0} {10}={0} {2}2{0}
|
||||
|
||||
{1}# comment-block=12{0}
|
||||
{12}## block{0}
|
||||
|
||||
{1}# unclosed-string=13{0}
|
||||
{13}" unclosed
|
||||
{0}
|
||||
{1}# highlighted-identifier=14{0}
|
||||
{5}var{0} {14}hilight{0} {10}={0} {2}2{0}
|
||||
|
||||
{1}# annotation=15{0}
|
||||
{15}@onready{0}
|
||||
{5}var{0} {11}a{0} {10}={0} {2}3{0}
|
||||
{15}@onready{0} {5}var{0} {11}b{0} {10}={0} {2}3{0}
|
||||
|
||||
{1}# node-identifier=16{0}
|
||||
{16}%node{0}
|
||||
{16}$node{0}
|
33
3rdparty/lexilla540/lexilla/test/examples/gdscript/NodePath.gd
vendored
Normal file
33
3rdparty/lexilla540/lexilla/test/examples/gdscript/NodePath.gd
vendored
Normal file
@ -0,0 +1,33 @@
|
||||
# nodepath
|
||||
|
||||
$Node
|
||||
|
||||
%Node
|
||||
|
||||
%node/"n o d e"/%'n o d e'
|
||||
|
||||
%"No de"
|
||||
|
||||
|
||||
$/root/ThisNode/%Node % %test
|
||||
|
||||
$MainMenuPanel/%Options % %test
|
||||
|
||||
%Options % %test
|
||||
|
||||
$Node % %test
|
||||
|
||||
|
||||
get_node("%Options") % %test
|
||||
|
||||
$"Nod se" % %test
|
||||
|
||||
$/test/"No % de"/test % %test
|
||||
|
||||
%node/"n o d e"/'n o d e' % %"No De"
|
||||
|
||||
"%010d" % 12345
|
||||
|
||||
1 % 1
|
||||
|
||||
a % b
|
34
3rdparty/lexilla540/lexilla/test/examples/gdscript/NodePath.gd.folded
vendored
Normal file
34
3rdparty/lexilla540/lexilla/test/examples/gdscript/NodePath.gd.folded
vendored
Normal file
@ -0,0 +1,34 @@
|
||||
0 400 0 # nodepath
|
||||
1 400 0
|
||||
0 400 0 $Node
|
||||
1 400 0
|
||||
0 400 0 %Node
|
||||
1 400 0
|
||||
0 400 0 %node/"n o d e"/%'n o d e'
|
||||
1 400 0
|
||||
0 400 0 %"No de"
|
||||
1 400 0
|
||||
1 400 0
|
||||
0 400 0 $/root/ThisNode/%Node % %test
|
||||
1 400 0
|
||||
0 400 0 $MainMenuPanel/%Options % %test
|
||||
1 400 0
|
||||
0 400 0 %Options % %test
|
||||
1 400 0
|
||||
0 400 0 $Node % %test
|
||||
1 400 0
|
||||
1 400 0
|
||||
0 400 0 get_node("%Options") % %test
|
||||
1 400 0
|
||||
0 400 0 $"Nod se" % %test
|
||||
1 400 0
|
||||
0 400 0 $/test/"No % de"/test % %test
|
||||
1 400 0
|
||||
0 400 0 %node/"n o d e"/'n o d e' % %"No De"
|
||||
1 400 0
|
||||
0 400 0 "%010d" % 12345
|
||||
1 400 0
|
||||
0 400 0 1 % 1
|
||||
1 400 0
|
||||
0 400 0 a % b
|
||||
1 400 0
|
33
3rdparty/lexilla540/lexilla/test/examples/gdscript/NodePath.gd.styled
vendored
Normal file
33
3rdparty/lexilla540/lexilla/test/examples/gdscript/NodePath.gd.styled
vendored
Normal file
@ -0,0 +1,33 @@
|
||||
{1}# nodepath{0}
|
||||
|
||||
{16}$Node{0}
|
||||
|
||||
{16}%Node{0}
|
||||
|
||||
{16}%node/"n o d e"/%'n o d e'{0}
|
||||
|
||||
{16}%"No de"{0}
|
||||
|
||||
|
||||
{16}$/root/ThisNode/%Node{0} {10}%{0} {16}%test{0}
|
||||
|
||||
{16}$MainMenuPanel/%Options{0} {10}%{0} {16}%test{0}
|
||||
|
||||
{16}%Options{0} {10}%{0} {16}%test{0}
|
||||
|
||||
{16}$Node{0} {10}%{0} {16}%test{0}
|
||||
|
||||
|
||||
{11}get_node{10}({3}"%Options"{10}){0} {10}%{0} {16}%test{0}
|
||||
|
||||
{16}$"Nod se"{0} {10}%{0} {16}%test{0}
|
||||
|
||||
{16}$/test/"No % de"/test{0} {10}%{0} {16}%test{0}
|
||||
|
||||
{16}%node/"n o d e"/'n o d e'{0} {10}%{0} {16}%"No De"{0}
|
||||
|
||||
{3}"%010d"{0} {10}%{0} {2}12345{0}
|
||||
|
||||
{2}1{0} {10}%{0} {2}1{0}
|
||||
|
||||
{11}a{0} {10}%{0} {11}b{0}
|
5
3rdparty/lexilla540/lexilla/test/examples/gdscript/SciTE.properties
vendored
Normal file
5
3rdparty/lexilla540/lexilla/test/examples/gdscript/SciTE.properties
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
lexer.*.gd=gdscript
|
||||
keywords.*.gd=class func else for if extends in pass print return while var
|
||||
keywords2.*.gd=hilight
|
||||
fold=1
|
||||
fold.compact=1
|
Reference in New Issue
Block a user