eric6/ThirdParty/Pygments/pygments/lexers/_asy_builtins.py

changeset 7547
21b0534faebc
parent 6942
2602857055c5
child 7701
25f42e208e08
equal deleted inserted replaced
7546:bf5f777260a6 7547:21b0534faebc
8 8
9 Do not edit the ASYFUNCNAME and ASYVARNAME sets by hand. 9 Do not edit the ASYFUNCNAME and ASYVARNAME sets by hand.
10 TODO: perl/python script in Asymptote SVN similar to asy-list.pl but only 10 TODO: perl/python script in Asymptote SVN similar to asy-list.pl but only
11 for function and variable names. 11 for function and variable names.
12 12
13 :copyright: Copyright 2006-2017 by the Pygments team, see AUTHORS. 13 :copyright: Copyright 2006-2019 by the Pygments team, see AUTHORS.
14 :license: BSD, see LICENSE for details. 14 :license: BSD, see LICENSE for details.
15 """ 15 """
16 16
17 ASYFUNCNAME = set(( 17 ASYFUNCNAME = {
18 'AND', 18 'AND',
19 'Arc', 19 'Arc',
20 'ArcArrow', 20 'ArcArrow',
21 'ArcArrows', 21 'ArcArrows',
22 'Arrow', 22 'Arrow',
1036 'zlimits', 1036 'zlimits',
1037 'zpart', 1037 'zpart',
1038 'ztick', 1038 'ztick',
1039 'ztick3', 1039 'ztick3',
1040 'ztrans' 1040 'ztrans'
1041 )) 1041 }
1042 1042
1043 ASYVARNAME = set(( 1043 ASYVARNAME = {
1044 'AliceBlue', 1044 'AliceBlue',
1045 'Align', 1045 'Align',
1046 'Allow', 1046 'Allow',
1047 'AntiqueWhite', 1047 'AntiqueWhite',
1048 'Apricot', 1048 'Apricot',
1640 'xformStack', 1640 'xformStack',
1641 'yellow', 1641 'yellow',
1642 'ylabelwidth', 1642 'ylabelwidth',
1643 'zerotickfuzz', 1643 'zerotickfuzz',
1644 'zerowinding' 1644 'zerowinding'
1645 )) 1645 }

eric ide

mercurial