blob: e03f0537db084f7c88ec950437865f75a87e388e [file] [log] [blame]
David Reissea2cba82009-03-30 21:35:00 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
David Reiss9a08dc62008-02-27 01:55:17 +000020namespace cpp yozone
David Hullec2a2522017-07-28 02:09:42 +020021namespace erl consts_
Jens Geyer76283922022-06-11 14:24:33 +020022namespace haxe constantsDemo
Mark Sleea4713ea2007-01-05 01:09:04 +000023
24struct thing {
25 1: i32 hello,
26 2: i32 goodbye
27}
28
David Reiss176ed362008-06-10 22:56:48 +000029enum enumconstants {
Mark Sleed0767c52007-07-27 22:14:41 +000030 ONE = 1,
31 TWO = 2
32}
33
Anthony F. Molinaro71a58a82010-09-27 19:27:40 +000034// struct thing2 {
35// /** standard docstring */
36// 1: enumconstants val = TWO
37// }
David Reiss202111d2007-08-06 20:38:18 +000038
David Reiss9a4edfa2008-05-01 05:52:50 +000039typedef i32 myIntType
40const myIntType myInt = 3
41
Anthony F. Molinaro71a58a82010-09-27 19:27:40 +000042//const map<enumconstants,string> GEN_ENUM_NAMES = {ONE : "HOWDY", TWO: "PARTNER"}
Mark Sleed0767c52007-07-27 22:14:41 +000043
Mark Sleea4713ea2007-01-05 01:09:04 +000044const i32 hex_const = 0x0001F
Jens Geyer5ec21212015-04-26 15:24:59 +020045const i32 negative_hex_constant = -0x0001F
Mark Sleea4713ea2007-01-05 01:09:04 +000046
47const i32 GEN_ME = -3523553
48const double GEn_DUB = 325.532
49const double GEn_DU = 085.2355
50const string GEN_STRING = "asldkjasfd"
51
Jens Geyer5eed3a12015-12-08 01:32:12 +010052const double e10 = 1e10 // fails with 0.9.3 and earlier
Jens Geyer52de5ca2015-12-08 23:00:08 +010053const double e11 = -1e10
Jens Geyer5eed3a12015-12-08 01:32:12 +010054
Mark Sleea4713ea2007-01-05 01:09:04 +000055const map<i32,i32> GEN_MAP = { 35532 : 233, 43523 : 853 }
56const list<i32> GEN_LIST = [ 235235, 23598352, 3253523 ]
57
58const map<i32, map<i32, i32>> GEN_MAPMAP = { 235 : { 532 : 53255, 235:235}}
59
60const map<string,i32> GEN_MAP2 = { "hello" : 233, "lkj98d" : 853, 'lkjsdf' : 098325 }
61
62const thing GEN_THING = { 'hello' : 325, 'goodbye' : 325352 }
63
64const map<i32,thing> GEN_WHAT = { 35 : { 'hello' : 325, 'goodbye' : 325352 } }
65
66const set<i32> GEN_SET = [ 235, 235, 53235 ]
67
Jens Geyer62445c12022-06-29 00:00:00 +020068const uuid GEN_UUID = "00000000-4444-CCCC-ffff-0123456789ab"
69
Mark Sleea4713ea2007-01-05 01:09:04 +000070exception Blah {
71 1: i32 bing }
72
73exception Gak {}
74
75service yowza {
76 void blingity(),
77 i32 blangity() throws (1: Blah hoot )
78}