Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(690)

Side by Side Diff: lib/src/prism/tests/languages/autohotkey/builtin_feature.test

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 abs
2 acos
3 asc
4 asin
5 atan
6 ceil
7 chr
8 class
9 cos
10 dllcall
11 exp
12 fileexist
13 Fileopen
14 floor
15 il_add
16 il_create
17 il_destroy
18 instr
19 substr
20 isfunc
21 islabel
22 IsObject
23 ln
24 log
25 lv_add
26 lv_delete
27 lv_deletecol
28 lv_getcount
29 lv_getnext
30 lv_gettext
31 lv_insert
32 lv_insertcol
33 lv_modify
34 lv_modifycol
35 lv_setimagelist
36 mod
37 onmessage
38 numget
39 numput
40 registercallback
41 regexmatch
42 regexreplace
43 round
44 sin
45 tan
46 sqrt
47 strlen
48 sb_seticon
49 sb_setparts
50 sb_settext
51 strsplit
52 tv_add
53 tv_delete
54 tv_getchild
55 tv_getcount
56 tv_getnext
57 tv_get
58 tv_getparent
59 tv_getprev
60 tv_getselection
61 tv_gettext
62 tv_modify
63 varsetcapacity
64 winactive
65 winexist
66 __New
67 __Call
68 __Get
69 __Set
70
71 ----------------------------------------------------
72
73 [
74 ["builtin", "abs"],
75 ["builtin", "acos"],
76 ["builtin", "asc"],
77 ["builtin", "asin"],
78 ["builtin", "atan"],
79 ["builtin", "ceil"],
80 ["builtin", "chr"],
81 ["builtin", "class"],
82 ["builtin", "cos"],
83 ["builtin", "dllcall"],
84 ["builtin", "exp"],
85 ["builtin", "fileexist"],
86 ["builtin", "Fileopen"],
87 ["builtin", "floor"],
88 ["builtin", "il_add"],
89 ["builtin", "il_create"],
90 ["builtin", "il_destroy"],
91 ["builtin", "instr"],
92 ["builtin", "substr"],
93 ["builtin", "isfunc"],
94 ["builtin", "islabel"],
95 ["builtin", "IsObject"],
96 ["builtin", "ln"],
97 ["builtin", "log"],
98 ["builtin", "lv_add"],
99 ["builtin", "lv_delete"],
100 ["builtin", "lv_deletecol"],
101 ["builtin", "lv_getcount"],
102 ["builtin", "lv_getnext"],
103 ["builtin", "lv_gettext"],
104 ["builtin", "lv_insert"],
105 ["builtin", "lv_insertcol"],
106 ["builtin", "lv_modify"],
107 ["builtin", "lv_modifycol"],
108 ["builtin", "lv_setimagelist"],
109 ["builtin", "mod"],
110 ["builtin", "onmessage"],
111 ["builtin", "numget"],
112 ["builtin", "numput"],
113 ["builtin", "registercallback"],
114 ["builtin", "regexmatch"],
115 ["builtin", "regexreplace"],
116 ["builtin", "round"],
117 ["builtin", "sin"],
118 ["builtin", "tan"],
119 ["builtin", "sqrt"],
120 ["builtin", "strlen"],
121 ["builtin", "sb_seticon"],
122 ["builtin", "sb_setparts"],
123 ["builtin", "sb_settext"],
124 ["builtin", "strsplit"],
125 ["builtin", "tv_add"],
126 ["builtin", "tv_delete"],
127 ["builtin", "tv_getchild"],
128 ["builtin", "tv_getcount"],
129 ["builtin", "tv_getnext"],
130 ["builtin", "tv_get"],
131 ["builtin", "tv_getparent"],
132 ["builtin", "tv_getprev"],
133 ["builtin", "tv_getselection"],
134 ["builtin", "tv_gettext"],
135 ["builtin", "tv_modify"],
136 ["builtin", "varsetcapacity"],
137 ["builtin", "winactive"],
138 ["builtin", "winexist"],
139 ["builtin", "__New"],
140 ["builtin", "__Call"],
141 ["builtin", "__Get"],
142 ["builtin", "__Set"]
143 ]
144
145 ----------------------------------------------------
146
147 Checks for all builtins.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698