forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoverage_test.lcidl
More file actions
120 lines (78 loc) · 1.65 KB
/
coverage_test.lcidl
File metadata and controls
120 lines (78 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
external coverage_test
/////////
enum first-enum
"a" as 1
"b" as 2
enum second-enum
"a" as 1
"b" as 2
/////////
command void_command
command boolean_command
return boolean
command integer_command
return integer
command real_command
return real
command cstring_command
return c-string
command string_command
return c-data
command objc_string_command
return objc-string
command objc_number_command
return objc-string
command objc_data_command
return objc-data
/////////
command ind_boolean_command
return boolean indirect
command ind_integer_command
return integer indirect
command ind_real_command
return real indirect
command ind_cstring_command
return c-string indirect
command ind_string_command
return c-data indirect
command ind_objc_string_command
return objc-string indirect
command ind_objc_number_command
return objc-string indirect
command ind_objc_data_command
return objc-data indirect
/////////
command command_in_boolean
in a as boolean
command command_inout_boolean
inout a as boolean
command command_out_boolean
out a as boolean
////
command command_in_integer
in a as integer
command command_inout_integer
inout a as integer
command command_out_integer
out a as integer
////
command command_in_real
in a as real
command command_inout_real
inout a as real
command command_out_real
out a as real
////
command command_in_cstring
in a as c-string
command command_inout_cstring
inout a as c-string
command command_out_cstring
out a as c-string
////
command command_in_string
in a as c-data
command command_inout_string
inout a as c-data
command command_out_string
out a as c-data