blob: 4085dc6d95a2ed06f73b4ce3ed326e1913a13cbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
protocol Pbuiltins {
// sanity-check that "essential" builtins are being declared
child: async Msg(bool b,
char c,
int i,
long l,
float f,
double d,
int8_t i8t,
uint8_t u8t,
int16_t i16t,
uint16_t u16t,
int32_t i32t,
uint32_t u32t,
int64_t i64t,
uint64_t u64t);
};
|