summaryrefslogtreecommitdiff
path: root/src/test/test-predefined-types.fidl
blob: 6226ed2d39e7dfee748083a4c6fe6ae1b0b6745f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package commonapi.tests

typeCollection PredefinedTypeCollection {
	typedef TestUInt8 is UInt8
	typedef TestUInt16 is UInt16
	typedef TestUInt32 is UInt32
	typedef TestUInt64 is UInt64
	typedef TestInt8 is Int8
	typedef TestInt16 is Int16
	typedef TestInt32 is Int32
	typedef TestInt64 is Int64
	typedef TestBoolean is Boolean
	typedef TestByteBuffer is ByteBuffer
	typedef TestDouble is Double
	typedef TestFloat is Float
	typedef TestString is String
}