zeroc-ice 3.7.0 → 3.7.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (684) hide show
  1. checksums.yaml +4 -4
  2. data/ICE_LICENSE +1 -1
  3. data/bin/slice2rb +1 -1
  4. data/ext/Communicator.cpp +72 -2
  5. data/ext/Communicator.h +1 -1
  6. data/ext/Config.h +11 -1
  7. data/ext/Connection.cpp +22 -2
  8. data/ext/Connection.h +4 -1
  9. data/ext/Endpoint.cpp +1 -1
  10. data/ext/Endpoint.h +1 -1
  11. data/ext/ImplicitContext.cpp +1 -1
  12. data/ext/ImplicitContext.h +1 -1
  13. data/ext/Init.cpp +1 -1
  14. data/ext/Logger.cpp +1 -1
  15. data/ext/Logger.h +1 -1
  16. data/ext/Operation.cpp +1 -1
  17. data/ext/Operation.h +1 -1
  18. data/ext/Properties.cpp +1 -1
  19. data/ext/Properties.h +1 -1
  20. data/ext/Proxy.cpp +70 -1
  21. data/ext/Proxy.h +1 -1
  22. data/ext/Slice.cpp +1 -1
  23. data/ext/Slice.h +1 -1
  24. data/ext/Types.cpp +21 -5
  25. data/ext/Types.h +1 -1
  26. data/ext/Util.cpp +1 -1
  27. data/ext/Util.h +1 -1
  28. data/ext/ValueFactoryManager.cpp +2 -2
  29. data/ext/ValueFactoryManager.h +2 -2
  30. data/ext/ice/cpp/include/Ice/Application.h +234 -76
  31. data/ext/ice/cpp/include/Ice/AsyncResult.h +77 -1
  32. data/ext/ice/cpp/include/Ice/AsyncResultF.h +1 -1
  33. data/ext/ice/cpp/include/Ice/BatchRequestInterceptor.h +35 -2
  34. data/ext/ice/cpp/include/Ice/BatchRequestQueueF.h +1 -1
  35. data/ext/ice/cpp/include/Ice/Buffer.h +1 -1
  36. data/ext/ice/cpp/include/Ice/CommunicatorAsync.h +43 -1
  37. data/ext/ice/cpp/include/Ice/Comparable.h +81 -1
  38. data/ext/ice/cpp/include/Ice/Config.h +8 -1
  39. data/ext/ice/cpp/include/Ice/ConnectionAsync.h +97 -1
  40. data/ext/ice/cpp/include/Ice/ConnectionIF.h +3 -1
  41. data/ext/ice/cpp/include/Ice/ConsoleUtil.h +1 -1
  42. data/ext/ice/cpp/include/Ice/DefaultValueFactory.h +1 -1
  43. data/ext/ice/cpp/include/Ice/DispatchInterceptor.h +17 -2
  44. data/ext/ice/cpp/include/Ice/Dispatcher.h +22 -2
  45. data/ext/ice/cpp/include/Ice/DynamicLibrary.h +1 -1
  46. data/ext/ice/cpp/include/Ice/DynamicLibraryF.h +1 -1
  47. data/ext/ice/cpp/include/Ice/Exception.h +57 -15
  48. data/ext/ice/cpp/include/Ice/ExceptionHelpers.h +19 -1
  49. data/ext/ice/cpp/include/Ice/FactoryTable.h +12 -2
  50. data/ext/ice/cpp/include/Ice/FactoryTableInit.h +1 -1
  51. data/ext/ice/cpp/include/Ice/Format.h +13 -14
  52. data/ext/ice/cpp/include/Ice/Functional.h +6 -1
  53. data/ext/ice/cpp/include/Ice/GCObject.h +1 -1
  54. data/ext/ice/cpp/include/Ice/Handle.h +1 -1
  55. data/ext/ice/cpp/include/Ice/Ice.h +1 -1
  56. data/ext/ice/cpp/include/Ice/IconvStringConverter.h +38 -3
  57. data/ext/ice/cpp/include/Ice/Incoming.h +15 -2
  58. data/ext/ice/cpp/include/Ice/IncomingAsync.h +37 -4
  59. data/ext/ice/cpp/include/Ice/IncomingAsyncF.h +1 -1
  60. data/ext/ice/cpp/include/Ice/Initialize.h +764 -98
  61. data/ext/ice/cpp/include/Ice/InputStream.h +637 -112
  62. data/ext/ice/cpp/include/Ice/InstanceF.h +1 -1
  63. data/ext/ice/cpp/include/Ice/InterfaceByValue.h +17 -1
  64. data/ext/ice/cpp/include/Ice/LocalObject.h +5 -1
  65. data/ext/ice/cpp/include/Ice/LocalObjectF.h +1 -1
  66. data/ext/ice/cpp/include/Ice/LoggerUtil.h +37 -6
  67. data/ext/ice/cpp/include/Ice/MetricsAdminI.h +3 -1
  68. data/ext/ice/cpp/include/Ice/MetricsFunctional.h +3 -1
  69. data/ext/ice/cpp/include/Ice/MetricsObserverI.h +3 -1
  70. data/ext/ice/cpp/include/Ice/NativePropertiesAdmin.h +46 -23
  71. data/ext/ice/cpp/include/Ice/Object.h +338 -47
  72. data/ext/ice/cpp/include/Ice/ObjectF.h +5 -1
  73. data/ext/ice/cpp/include/Ice/ObserverHelper.h +1 -1
  74. data/ext/ice/cpp/include/Ice/Optional.h +22 -6
  75. data/ext/ice/cpp/include/Ice/OutgoingAsync.h +15 -1
  76. data/ext/ice/cpp/include/Ice/OutgoingAsyncF.h +1 -1
  77. data/ext/ice/cpp/include/Ice/OutputStream.h +436 -92
  78. data/ext/ice/cpp/include/Ice/Protocol.h +31 -1
  79. data/ext/ice/cpp/include/Ice/Proxy.h +2244 -190
  80. data/ext/ice/cpp/include/Ice/ProxyF.h +3 -1
  81. data/ext/ice/cpp/include/Ice/ProxyFactoryF.h +1 -1
  82. data/ext/ice/cpp/include/Ice/ProxyHandle.h +10 -1
  83. data/ext/ice/cpp/include/Ice/ReferenceF.h +1 -1
  84. data/ext/ice/cpp/include/Ice/RegisterPlugins.h +67 -9
  85. data/ext/ice/cpp/include/Ice/RequestHandlerF.h +1 -1
  86. data/ext/ice/cpp/include/Ice/ResponseHandlerF.h +1 -1
  87. data/ext/ice/cpp/include/Ice/SHA1.h +1 -1
  88. data/ext/ice/cpp/include/Ice/ServantManagerF.h +1 -1
  89. data/ext/ice/cpp/include/Ice/Service.h +267 -138
  90. data/ext/ice/cpp/include/Ice/SliceChecksums.h +5 -1
  91. data/ext/ice/cpp/include/Ice/SlicedData.h +80 -33
  92. data/ext/ice/cpp/include/Ice/SlicedDataF.h +4 -1
  93. data/ext/ice/cpp/include/Ice/StreamHelpers.h +324 -116
  94. data/ext/ice/cpp/include/Ice/StringConverter.h +32 -1
  95. data/ext/ice/cpp/include/Ice/ThreadPoolF.h +1 -1
  96. data/ext/ice/cpp/include/Ice/UUID.h +2 -1
  97. data/ext/ice/cpp/include/Ice/UniquePtr.h +2 -2
  98. data/ext/ice/cpp/include/Ice/UniqueRef.h +6 -2
  99. data/ext/ice/cpp/include/Ice/UserExceptionFactory.h +6 -1
  100. data/ext/ice/cpp/include/Ice/Value.h +41 -1
  101. data/ext/ice/cpp/include/Ice/ValueF.h +3 -1
  102. data/ext/ice/cpp/include/IceSSL/Config.h +1 -1
  103. data/ext/ice/cpp/include/IceSSL/IceSSL.h +1 -1
  104. data/ext/ice/cpp/include/IceSSL/OpenSSL.h +75 -53
  105. data/ext/ice/cpp/include/IceSSL/Plugin.h +323 -218
  106. data/ext/ice/cpp/include/IceSSL/SChannel.h +34 -27
  107. data/ext/ice/cpp/include/IceSSL/SecureTransport.h +35 -28
  108. data/ext/ice/cpp/include/IceSSL/UWP.h +33 -24
  109. data/ext/ice/cpp/include/IceUtil/Atomic.h +1 -1
  110. data/ext/ice/cpp/include/IceUtil/Cond.h +1 -1
  111. data/ext/ice/cpp/include/IceUtil/Config.h +11 -3
  112. data/ext/ice/cpp/include/IceUtil/ConsoleUtil.h +1 -1
  113. data/ext/ice/cpp/include/IceUtil/CountDownLatch.h +1 -1
  114. data/ext/ice/cpp/include/IceUtil/CtrlCHandler.h +59 -31
  115. data/ext/ice/cpp/include/IceUtil/DisableWarnings.h +1 -1
  116. data/ext/ice/cpp/include/IceUtil/Exception.h +1 -1
  117. data/ext/ice/cpp/include/IceUtil/FileUtil.h +1 -1
  118. data/ext/ice/cpp/include/IceUtil/Functional.h +1 -1
  119. data/ext/ice/cpp/include/IceUtil/Handle.h +1 -1
  120. data/ext/ice/cpp/include/IceUtil/IceUtil.h +1 -1
  121. data/ext/ice/cpp/include/IceUtil/InputUtil.h +1 -1
  122. data/ext/ice/cpp/include/IceUtil/Iterator.h +1 -1
  123. data/ext/ice/cpp/include/IceUtil/Lock.h +1 -1
  124. data/ext/ice/cpp/include/IceUtil/Monitor.h +1 -1
  125. data/ext/ice/cpp/include/IceUtil/Mutex.h +2 -5
  126. data/ext/ice/cpp/include/IceUtil/MutexProtocol.h +1 -1
  127. data/ext/ice/cpp/include/IceUtil/MutexPtrLock.h +1 -1
  128. data/ext/ice/cpp/include/IceUtil/MutexPtrTryLock.h +1 -1
  129. data/ext/ice/cpp/include/IceUtil/Optional.h +95 -1
  130. data/ext/ice/cpp/include/IceUtil/Options.h +1 -1
  131. data/ext/ice/cpp/include/IceUtil/OutputUtil.h +1 -1
  132. data/ext/ice/cpp/include/IceUtil/PopDisableWarnings.h +1 -1
  133. data/ext/ice/cpp/include/IceUtil/PushDisableWarnings.h +1 -1
  134. data/ext/ice/cpp/include/IceUtil/Random.h +1 -1
  135. data/ext/ice/cpp/include/IceUtil/RecMutex.h +1 -1
  136. data/ext/ice/cpp/include/IceUtil/ResourceConfig.h +4 -4
  137. data/ext/ice/cpp/include/IceUtil/ScannerConfig.h +5 -3
  138. data/ext/ice/cpp/include/IceUtil/ScopedArray.h +1 -1
  139. data/ext/ice/cpp/include/IceUtil/Shared.h +1 -1
  140. data/ext/ice/cpp/include/IceUtil/StopWatch.h +1 -1
  141. data/ext/ice/cpp/include/IceUtil/StringConverter.h +106 -86
  142. data/ext/ice/cpp/include/IceUtil/StringUtil.h +1 -1
  143. data/ext/ice/cpp/include/IceUtil/Thread.h +1 -1
  144. data/ext/ice/cpp/include/IceUtil/ThreadException.h +1 -1
  145. data/ext/ice/cpp/include/IceUtil/Time.h +1 -1
  146. data/ext/ice/cpp/include/IceUtil/Timer.h +5 -1
  147. data/ext/ice/cpp/include/IceUtil/UUID.h +5 -1
  148. data/ext/ice/cpp/include/IceUtil/UndefSysMacros.h +1 -1
  149. data/ext/ice/cpp/include/generated/Ice/BuiltinSequences.h +80 -20
  150. data/ext/ice/cpp/include/generated/Ice/Communicator.h +927 -130
  151. data/ext/ice/cpp/include/generated/Ice/CommunicatorF.h +13 -5
  152. data/ext/ice/cpp/include/generated/Ice/Connection.h +990 -194
  153. data/ext/ice/cpp/include/generated/Ice/ConnectionF.h +21 -9
  154. data/ext/ice/cpp/include/generated/Ice/Current.h +180 -17
  155. data/ext/ice/cpp/include/generated/Ice/Endpoint.h +484 -118
  156. data/ext/ice/cpp/include/generated/Ice/EndpointF.h +41 -17
  157. data/ext/ice/cpp/include/generated/Ice/EndpointTypes.h +29 -3
  158. data/ext/ice/cpp/include/generated/Ice/FacetMap.h +11 -5
  159. data/ext/ice/cpp/include/generated/Ice/Identity.h +56 -7
  160. data/ext/ice/cpp/include/generated/Ice/ImplicitContext.h +150 -28
  161. data/ext/ice/cpp/include/generated/Ice/ImplicitContextF.h +13 -5
  162. data/ext/ice/cpp/include/generated/Ice/Instrumentation.h +629 -83
  163. data/ext/ice/cpp/include/generated/Ice/InstrumentationF.h +19 -7
  164. data/ext/ice/cpp/include/generated/Ice/LocalException.h +5104 -794
  165. data/ext/ice/cpp/include/generated/Ice/Locator.h +2222 -443
  166. data/ext/ice/cpp/include/generated/Ice/LocatorF.h +27 -9
  167. data/ext/ice/cpp/include/generated/Ice/Logger.h +104 -26
  168. data/ext/ice/cpp/include/generated/Ice/LoggerF.h +13 -5
  169. data/ext/ice/cpp/include/generated/Ice/Metrics.h +2534 -455
  170. data/ext/ice/cpp/include/generated/Ice/ObjectAdapter.h +1004 -126
  171. data/ext/ice/cpp/include/generated/Ice/ObjectAdapterF.h +13 -5
  172. data/ext/ice/cpp/include/generated/Ice/ObjectFactory.h +72 -12
  173. data/ext/ice/cpp/include/generated/Ice/Plugin.h +142 -28
  174. data/ext/ice/cpp/include/generated/Ice/PluginF.h +17 -7
  175. data/ext/ice/cpp/include/generated/Ice/Process.h +511 -71
  176. data/ext/ice/cpp/include/generated/Ice/ProcessF.h +18 -6
  177. data/ext/ice/cpp/include/generated/Ice/Properties.h +306 -58
  178. data/ext/ice/cpp/include/generated/Ice/PropertiesAdmin.h +737 -121
  179. data/ext/ice/cpp/include/generated/Ice/PropertiesF.h +22 -8
  180. data/ext/ice/cpp/include/generated/Ice/RemoteLogger.h +1526 -279
  181. data/ext/ice/cpp/include/generated/Ice/Router.h +1009 -198
  182. data/ext/ice/cpp/include/generated/Ice/RouterF.h +18 -6
  183. data/ext/ice/cpp/include/generated/Ice/ServantLocator.h +174 -18
  184. data/ext/ice/cpp/include/generated/Ice/ServantLocatorF.h +13 -5
  185. data/ext/ice/cpp/include/generated/Ice/SliceChecksumDict.h +13 -3
  186. data/ext/ice/cpp/include/generated/Ice/ValueFactory.h +177 -23
  187. data/ext/ice/cpp/include/generated/Ice/Version.h +43 -13
  188. data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfo.h +71 -15
  189. data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfoF.h +13 -5
  190. data/ext/ice/cpp/include/generated/IceSSL/EndpointInfo.h +39 -9
  191. data/ext/ice/cpp/src/Ice/ACM.cpp +12 -3
  192. data/ext/ice/cpp/src/Ice/ACM.h +1 -1
  193. data/ext/ice/cpp/src/Ice/ACMF.h +1 -1
  194. data/ext/ice/cpp/src/Ice/Acceptor.cpp +1 -1
  195. data/ext/ice/cpp/src/Ice/Acceptor.h +1 -1
  196. data/ext/ice/cpp/src/Ice/AcceptorF.h +1 -1
  197. data/ext/ice/cpp/src/Ice/ArgVector.cpp +1 -1
  198. data/ext/ice/cpp/src/Ice/ArgVector.h +1 -1
  199. data/ext/ice/cpp/src/Ice/AsyncResult.cpp +1 -1
  200. data/ext/ice/cpp/src/Ice/Base64.cpp +1 -1
  201. data/ext/ice/cpp/src/Ice/Base64.h +1 -1
  202. data/ext/ice/cpp/src/Ice/BatchRequestQueue.cpp +1 -1
  203. data/ext/ice/cpp/src/Ice/BatchRequestQueue.h +1 -1
  204. data/ext/ice/cpp/src/Ice/Buffer.cpp +1 -1
  205. data/ext/ice/cpp/src/Ice/BuiltinSequences.cpp +3 -3
  206. data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.cpp +1 -1
  207. data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.h +1 -1
  208. data/ext/ice/cpp/src/Ice/Communicator.cpp +6 -4
  209. data/ext/ice/cpp/src/Ice/CommunicatorF.cpp +3 -3
  210. data/ext/ice/cpp/src/Ice/CommunicatorI.cpp +34 -13
  211. data/ext/ice/cpp/src/Ice/CommunicatorI.h +10 -10
  212. data/ext/ice/cpp/src/Ice/Cond.cpp +1 -1
  213. data/ext/ice/cpp/src/Ice/ConnectRequestHandler.cpp +11 -6
  214. data/ext/ice/cpp/src/Ice/ConnectRequestHandler.h +1 -1
  215. data/ext/ice/cpp/src/Ice/ConnectRequestHandlerF.h +1 -1
  216. data/ext/ice/cpp/src/Ice/Connection.cpp +27 -11
  217. data/ext/ice/cpp/src/Ice/ConnectionF.cpp +3 -3
  218. data/ext/ice/cpp/src/Ice/ConnectionFactory.cpp +24 -19
  219. data/ext/ice/cpp/src/Ice/ConnectionFactory.h +1 -1
  220. data/ext/ice/cpp/src/Ice/ConnectionFactoryF.h +1 -1
  221. data/ext/ice/cpp/src/Ice/ConnectionI.cpp +45 -37
  222. data/ext/ice/cpp/src/Ice/ConnectionI.h +10 -8
  223. data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.cpp +1 -1
  224. data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.h +1 -1
  225. data/ext/ice/cpp/src/Ice/Connector.cpp +1 -1
  226. data/ext/ice/cpp/src/Ice/Connector.h +1 -1
  227. data/ext/ice/cpp/src/Ice/ConnectorF.h +1 -1
  228. data/ext/ice/cpp/src/Ice/CountDownLatch.cpp +1 -1
  229. data/ext/ice/cpp/src/Ice/Current.cpp +3 -3
  230. data/ext/ice/cpp/src/Ice/DefaultsAndOverrides.cpp +5 -7
  231. data/ext/ice/cpp/src/Ice/DefaultsAndOverrides.h +1 -1
  232. data/ext/ice/cpp/src/Ice/DefaultsAndOverridesF.h +1 -1
  233. data/ext/ice/cpp/src/Ice/DispatchInterceptor.cpp +1 -1
  234. data/ext/ice/cpp/src/Ice/DynamicLibrary.cpp +1 -1
  235. data/ext/ice/cpp/src/Ice/Endpoint.cpp +24 -10
  236. data/ext/ice/cpp/src/Ice/EndpointF.cpp +3 -3
  237. data/ext/ice/cpp/src/Ice/EndpointFactory.cpp +1 -1
  238. data/ext/ice/cpp/src/Ice/EndpointFactory.h +1 -1
  239. data/ext/ice/cpp/src/Ice/EndpointFactoryF.h +1 -1
  240. data/ext/ice/cpp/src/Ice/EndpointFactoryManager.cpp +7 -13
  241. data/ext/ice/cpp/src/Ice/EndpointFactoryManager.h +1 -1
  242. data/ext/ice/cpp/src/Ice/EndpointFactoryManagerF.h +1 -1
  243. data/ext/ice/cpp/src/Ice/EndpointI.cpp +2 -2
  244. data/ext/ice/cpp/src/Ice/EndpointI.h +5 -5
  245. data/ext/ice/cpp/src/Ice/EndpointIF.h +1 -1
  246. data/ext/ice/cpp/src/Ice/EndpointTypes.cpp +3 -3
  247. data/ext/ice/cpp/src/Ice/EventHandler.cpp +1 -1
  248. data/ext/ice/cpp/src/Ice/EventHandler.h +1 -1
  249. data/ext/ice/cpp/src/Ice/EventHandlerF.h +1 -1
  250. data/ext/ice/cpp/src/Ice/Exception.cpp +1 -1
  251. data/ext/ice/cpp/src/Ice/FacetMap.cpp +3 -3
  252. data/ext/ice/cpp/src/Ice/FactoryTable.cpp +1 -1
  253. data/ext/ice/cpp/src/Ice/FactoryTableInit.cpp +1 -1
  254. data/ext/ice/cpp/src/Ice/GCObject.cpp +1 -1
  255. data/ext/ice/cpp/src/Ice/HashUtil.h +1 -1
  256. data/ext/ice/cpp/src/Ice/HttpParser.cpp +1 -1
  257. data/ext/ice/cpp/src/Ice/HttpParser.h +1 -1
  258. data/ext/ice/cpp/src/Ice/IPEndpointI.cpp +24 -29
  259. data/ext/ice/cpp/src/Ice/IPEndpointI.h +5 -5
  260. data/ext/ice/cpp/src/Ice/IPEndpointIF.h +1 -1
  261. data/ext/ice/cpp/src/Ice/IconvStringConverter.cpp +1 -1
  262. data/ext/ice/cpp/src/Ice/Identity.cpp +3 -3
  263. data/ext/ice/cpp/src/Ice/ImplicitContext.cpp +6 -4
  264. data/ext/ice/cpp/src/Ice/ImplicitContextF.cpp +3 -3
  265. data/ext/ice/cpp/src/Ice/ImplicitContextI.cpp +2 -13
  266. data/ext/ice/cpp/src/Ice/ImplicitContextI.h +1 -1
  267. data/ext/ice/cpp/src/Ice/Incoming.cpp +1 -1
  268. data/ext/ice/cpp/src/Ice/IncomingAsync.cpp +1 -1
  269. data/ext/ice/cpp/src/Ice/IncomingRequest.h +1 -1
  270. data/ext/ice/cpp/src/Ice/Initialize.cpp +10 -16
  271. data/ext/ice/cpp/src/Ice/InputStream.cpp +1 -1
  272. data/ext/ice/cpp/src/Ice/Instance.cpp +13 -34
  273. data/ext/ice/cpp/src/Ice/Instance.h +1 -1
  274. data/ext/ice/cpp/src/Ice/Instrumentation.cpp +33 -13
  275. data/ext/ice/cpp/src/Ice/InstrumentationF.cpp +3 -3
  276. data/ext/ice/cpp/src/Ice/InstrumentationI.cpp +1 -1
  277. data/ext/ice/cpp/src/Ice/InstrumentationI.h +1 -1
  278. data/ext/ice/cpp/src/Ice/LocalException.cpp +279 -279
  279. data/ext/ice/cpp/src/Ice/LocalObject.cpp +1 -1
  280. data/ext/ice/cpp/src/Ice/Locator.cpp +287 -174
  281. data/ext/ice/cpp/src/Ice/LocatorF.cpp +3 -3
  282. data/ext/ice/cpp/src/Ice/LocatorInfo.cpp +4 -9
  283. data/ext/ice/cpp/src/Ice/LocatorInfo.h +1 -1
  284. data/ext/ice/cpp/src/Ice/LocatorInfoF.h +1 -1
  285. data/ext/ice/cpp/src/Ice/Logger.cpp +6 -4
  286. data/ext/ice/cpp/src/Ice/LoggerAdminI.cpp +1 -1
  287. data/ext/ice/cpp/src/Ice/LoggerAdminI.h +1 -1
  288. data/ext/ice/cpp/src/Ice/LoggerF.cpp +3 -3
  289. data/ext/ice/cpp/src/Ice/LoggerI.cpp +1 -1
  290. data/ext/ice/cpp/src/Ice/LoggerI.h +1 -1
  291. data/ext/ice/cpp/src/Ice/LoggerUtil.cpp +1 -1
  292. data/ext/ice/cpp/src/Ice/Metrics.cpp +297 -109
  293. data/ext/ice/cpp/src/Ice/MetricsAdminI.cpp +2 -7
  294. data/ext/ice/cpp/src/Ice/MetricsObserverI.cpp +1 -1
  295. data/ext/ice/cpp/src/Ice/Network.cpp +188 -225
  296. data/ext/ice/cpp/src/Ice/Network.h +3 -12
  297. data/ext/ice/cpp/src/Ice/NetworkF.h +1 -1
  298. data/ext/ice/cpp/src/Ice/NetworkProxy.cpp +1 -1
  299. data/ext/ice/cpp/src/Ice/NetworkProxy.h +1 -1
  300. data/ext/ice/cpp/src/Ice/NetworkProxyF.h +1 -1
  301. data/ext/ice/cpp/src/Ice/Object.cpp +7 -4
  302. data/ext/ice/cpp/src/Ice/ObjectAdapter.cpp +6 -4
  303. data/ext/ice/cpp/src/Ice/ObjectAdapterF.cpp +3 -3
  304. data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.cpp +53 -19
  305. data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.h +1 -1
  306. data/ext/ice/cpp/src/Ice/ObjectAdapterFactoryF.h +1 -1
  307. data/ext/ice/cpp/src/Ice/ObjectAdapterI.cpp +116 -150
  308. data/ext/ice/cpp/src/Ice/ObjectAdapterI.h +11 -11
  309. data/ext/ice/cpp/src/Ice/ObjectFactory.cpp +6 -4
  310. data/ext/ice/cpp/src/Ice/ObserverHelper.cpp +1 -1
  311. data/ext/ice/cpp/src/Ice/OpaqueEndpointI.cpp +25 -42
  312. data/ext/ice/cpp/src/Ice/OpaqueEndpointI.h +2 -2
  313. data/ext/ice/cpp/src/Ice/OutgoingAsync.cpp +1 -1
  314. data/ext/ice/cpp/src/Ice/OutputStream.cpp +1 -1
  315. data/ext/ice/cpp/src/Ice/Plugin.cpp +9 -5
  316. data/ext/ice/cpp/src/Ice/PluginF.cpp +3 -3
  317. data/ext/ice/cpp/src/Ice/PluginManagerI.cpp +15 -34
  318. data/ext/ice/cpp/src/Ice/PluginManagerI.h +3 -3
  319. data/ext/ice/cpp/src/Ice/Process.cpp +69 -40
  320. data/ext/ice/cpp/src/Ice/ProcessF.cpp +3 -3
  321. data/ext/ice/cpp/src/Ice/Properties.cpp +6 -4
  322. data/ext/ice/cpp/src/Ice/PropertiesAdmin.cpp +89 -54
  323. data/ext/ice/cpp/src/Ice/PropertiesAdminI.cpp +1 -1
  324. data/ext/ice/cpp/src/Ice/PropertiesAdminI.h +1 -1
  325. data/ext/ice/cpp/src/Ice/PropertiesF.cpp +3 -3
  326. data/ext/ice/cpp/src/Ice/PropertiesI.cpp +15 -21
  327. data/ext/ice/cpp/src/Ice/PropertiesI.h +10 -10
  328. data/ext/ice/cpp/src/Ice/PropertyNames.cpp +4 -2
  329. data/ext/ice/cpp/src/Ice/PropertyNames.h +2 -2
  330. data/ext/ice/cpp/src/Ice/Protocol.cpp +5 -13
  331. data/ext/ice/cpp/src/Ice/ProtocolInstance.cpp +1 -1
  332. data/ext/ice/cpp/src/Ice/ProtocolInstance.h +1 -1
  333. data/ext/ice/cpp/src/Ice/ProtocolInstanceF.h +1 -1
  334. data/ext/ice/cpp/src/Ice/ProtocolPluginFacade.cpp +1 -1
  335. data/ext/ice/cpp/src/Ice/ProtocolPluginFacade.h +1 -1
  336. data/ext/ice/cpp/src/Ice/ProtocolPluginFacadeF.h +1 -1
  337. data/ext/ice/cpp/src/Ice/Proxy.cpp +46 -1
  338. data/ext/ice/cpp/src/Ice/ProxyFactory.cpp +1 -1
  339. data/ext/ice/cpp/src/Ice/ProxyFactory.h +1 -1
  340. data/ext/ice/cpp/src/Ice/Reference.cpp +56 -6
  341. data/ext/ice/cpp/src/Ice/Reference.h +13 -2
  342. data/ext/ice/cpp/src/Ice/ReferenceFactory.cpp +51 -90
  343. data/ext/ice/cpp/src/Ice/ReferenceFactory.h +1 -1
  344. data/ext/ice/cpp/src/Ice/ReferenceFactoryF.h +1 -1
  345. data/ext/ice/cpp/src/Ice/RegisterPluginsInit.cpp +1 -1
  346. data/ext/ice/cpp/src/Ice/RegisterPluginsInit.h +1 -1
  347. data/ext/ice/cpp/src/Ice/RemoteLogger.cpp +203 -117
  348. data/ext/ice/cpp/src/Ice/ReplyStatus.h +1 -1
  349. data/ext/ice/cpp/src/Ice/RequestHandler.cpp +1 -1
  350. data/ext/ice/cpp/src/Ice/RequestHandler.h +1 -1
  351. data/ext/ice/cpp/src/Ice/RequestHandlerFactory.cpp +1 -1
  352. data/ext/ice/cpp/src/Ice/RequestHandlerFactory.h +1 -1
  353. data/ext/ice/cpp/src/Ice/ResponseHandler.cpp +1 -1
  354. data/ext/ice/cpp/src/Ice/ResponseHandler.h +1 -1
  355. data/ext/ice/cpp/src/Ice/RetryQueue.cpp +1 -1
  356. data/ext/ice/cpp/src/Ice/RetryQueue.h +1 -1
  357. data/ext/ice/cpp/src/Ice/RetryQueueF.h +1 -1
  358. data/ext/ice/cpp/src/Ice/Router.cpp +167 -89
  359. data/ext/ice/cpp/src/Ice/RouterF.cpp +3 -3
  360. data/ext/ice/cpp/src/Ice/RouterInfo.cpp +6 -28
  361. data/ext/ice/cpp/src/Ice/RouterInfo.h +1 -3
  362. data/ext/ice/cpp/src/Ice/RouterInfoF.h +1 -1
  363. data/ext/ice/cpp/src/Ice/SHA1.cpp +1 -1
  364. data/ext/ice/cpp/src/Ice/Selector.cpp +19 -26
  365. data/ext/ice/cpp/src/Ice/Selector.h +1 -1
  366. data/ext/ice/cpp/src/Ice/ServantLocator.cpp +6 -4
  367. data/ext/ice/cpp/src/Ice/ServantLocatorF.cpp +3 -3
  368. data/ext/ice/cpp/src/Ice/ServantManager.cpp +15 -31
  369. data/ext/ice/cpp/src/Ice/ServantManager.h +1 -1
  370. data/ext/ice/cpp/src/Ice/SharedContext.h +1 -1
  371. data/ext/ice/cpp/src/Ice/SliceChecksumDict.cpp +3 -3
  372. data/ext/ice/cpp/src/Ice/SliceChecksums.cpp +1 -1
  373. data/ext/ice/cpp/src/Ice/SlicedData.cpp +1 -1
  374. data/ext/ice/cpp/src/Ice/StreamSocket.cpp +32 -52
  375. data/ext/ice/cpp/src/Ice/StreamSocket.h +1 -1
  376. data/ext/ice/cpp/src/Ice/StringConverterPlugin.cpp +10 -1
  377. data/ext/ice/cpp/src/Ice/StringUtil.h +1 -1
  378. data/ext/ice/cpp/src/Ice/SysLoggerI.cpp +1 -1
  379. data/ext/ice/cpp/src/Ice/SysLoggerI.h +1 -1
  380. data/ext/ice/cpp/src/Ice/TcpAcceptor.cpp +5 -13
  381. data/ext/ice/cpp/src/Ice/TcpAcceptor.h +1 -1
  382. data/ext/ice/cpp/src/Ice/TcpConnector.cpp +1 -1
  383. data/ext/ice/cpp/src/Ice/TcpConnector.h +1 -1
  384. data/ext/ice/cpp/src/Ice/TcpEndpointI.cpp +8 -11
  385. data/ext/ice/cpp/src/Ice/TcpEndpointI.h +2 -2
  386. data/ext/ice/cpp/src/Ice/TcpTransceiver.cpp +1 -1
  387. data/ext/ice/cpp/src/Ice/TcpTransceiver.h +1 -1
  388. data/ext/ice/cpp/src/Ice/Thread.cpp +1 -1
  389. data/ext/ice/cpp/src/Ice/ThreadPool.cpp +13 -13
  390. data/ext/ice/cpp/src/Ice/ThreadPool.h +1 -1
  391. data/ext/ice/cpp/src/Ice/Timer.cpp +1 -1
  392. data/ext/ice/cpp/src/Ice/TraceLevels.cpp +1 -1
  393. data/ext/ice/cpp/src/Ice/TraceLevels.h +1 -1
  394. data/ext/ice/cpp/src/Ice/TraceLevelsF.h +1 -1
  395. data/ext/ice/cpp/src/Ice/TraceUtil.cpp +1 -1
  396. data/ext/ice/cpp/src/Ice/TraceUtil.h +1 -1
  397. data/ext/ice/cpp/src/Ice/Transceiver.cpp +1 -1
  398. data/ext/ice/cpp/src/Ice/Transceiver.h +1 -1
  399. data/ext/ice/cpp/src/Ice/TransceiverF.h +1 -1
  400. data/ext/ice/cpp/src/Ice/UdpConnector.cpp +1 -1
  401. data/ext/ice/cpp/src/Ice/UdpConnector.h +1 -1
  402. data/ext/ice/cpp/src/Ice/UdpEndpointI.cpp +19 -27
  403. data/ext/ice/cpp/src/Ice/UdpEndpointI.h +2 -2
  404. data/ext/ice/cpp/src/Ice/UdpTransceiver.cpp +17 -54
  405. data/ext/ice/cpp/src/Ice/UdpTransceiver.h +1 -1
  406. data/ext/ice/cpp/src/Ice/Value.cpp +1 -1
  407. data/ext/ice/cpp/src/Ice/ValueFactory.cpp +9 -5
  408. data/ext/ice/cpp/src/Ice/ValueFactoryManagerI.cpp +3 -6
  409. data/ext/ice/cpp/src/Ice/ValueFactoryManagerI.h +2 -2
  410. data/ext/ice/cpp/src/Ice/Version.cpp +3 -3
  411. data/ext/ice/cpp/src/Ice/VirtualShared.h +1 -1
  412. data/ext/ice/cpp/src/Ice/WSAcceptor.cpp +1 -1
  413. data/ext/ice/cpp/src/Ice/WSAcceptor.h +1 -1
  414. data/ext/ice/cpp/src/Ice/WSConnector.cpp +1 -1
  415. data/ext/ice/cpp/src/Ice/WSConnector.h +1 -1
  416. data/ext/ice/cpp/src/Ice/WSEndpoint.cpp +4 -5
  417. data/ext/ice/cpp/src/Ice/WSEndpoint.h +2 -2
  418. data/ext/ice/cpp/src/Ice/WSTransceiver.cpp +8 -9
  419. data/ext/ice/cpp/src/Ice/WSTransceiver.h +1 -1
  420. data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.cpp +85 -27
  421. data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.h +599 -113
  422. data/ext/ice/cpp/src/IceDiscovery/LocatorI.cpp +1 -1
  423. data/ext/ice/cpp/src/IceDiscovery/LocatorI.h +1 -1
  424. data/ext/ice/cpp/src/IceDiscovery/LookupI.cpp +1 -1
  425. data/ext/ice/cpp/src/IceDiscovery/LookupI.h +1 -1
  426. data/ext/ice/cpp/src/IceDiscovery/PluginI.cpp +1 -1
  427. data/ext/ice/cpp/src/IceDiscovery/PluginI.h +1 -1
  428. data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.cpp +70 -24
  429. data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.h +635 -69
  430. data/ext/ice/cpp/src/IceLocatorDiscovery/Plugin.h +1 -1
  431. data/ext/ice/cpp/src/IceLocatorDiscovery/PluginI.cpp +71 -9
  432. data/ext/ice/cpp/src/IceSSL/AcceptorI.cpp +2 -4
  433. data/ext/ice/cpp/src/IceSSL/AcceptorI.h +1 -1
  434. data/ext/ice/cpp/src/IceSSL/CertificateI.cpp +1 -1
  435. data/ext/ice/cpp/src/IceSSL/CertificateI.h +1 -1
  436. data/ext/ice/cpp/src/IceSSL/ConnectionInfo.cpp +6 -4
  437. data/ext/ice/cpp/src/IceSSL/ConnectionInfoF.cpp +3 -3
  438. data/ext/ice/cpp/src/IceSSL/ConnectorI.cpp +2 -4
  439. data/ext/ice/cpp/src/IceSSL/ConnectorI.h +1 -1
  440. data/ext/ice/cpp/src/IceSSL/EndpointI.cpp +2 -2
  441. data/ext/ice/cpp/src/IceSSL/EndpointI.h +2 -2
  442. data/ext/ice/cpp/src/IceSSL/EndpointInfo.cpp +6 -4
  443. data/ext/ice/cpp/src/IceSSL/Instance.cpp +1 -1
  444. data/ext/ice/cpp/src/IceSSL/Instance.h +1 -1
  445. data/ext/ice/cpp/src/IceSSL/InstanceF.h +1 -1
  446. data/ext/ice/cpp/src/IceSSL/OpenSSLCertificateI.cpp +1 -1
  447. data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.cpp +1 -1
  448. data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.h +1 -1
  449. data/ext/ice/cpp/src/IceSSL/OpenSSLEngineF.h +1 -1
  450. data/ext/ice/cpp/src/IceSSL/OpenSSLPluginI.cpp +1 -1
  451. data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.cpp +25 -62
  452. data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.h +1 -1
  453. data/ext/ice/cpp/src/IceSSL/OpenSSLUtil.cpp +1 -1
  454. data/ext/ice/cpp/src/IceSSL/OpenSSLUtil.h +1 -1
  455. data/ext/ice/cpp/src/IceSSL/PluginI.cpp +1 -1
  456. data/ext/ice/cpp/src/IceSSL/PluginI.h +1 -1
  457. data/ext/ice/cpp/src/IceSSL/RFC2253.cpp +1 -1
  458. data/ext/ice/cpp/src/IceSSL/RFC2253.h +1 -1
  459. data/ext/ice/cpp/src/IceSSL/SChannelCertificateI.cpp +1 -1
  460. data/ext/ice/cpp/src/IceSSL/SChannelEngine.cpp +1 -1
  461. data/ext/ice/cpp/src/IceSSL/SChannelEngine.h +1 -1
  462. data/ext/ice/cpp/src/IceSSL/SChannelEngineF.h +1 -1
  463. data/ext/ice/cpp/src/IceSSL/SChannelPluginI.cpp +1 -1
  464. data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.cpp +19 -27
  465. data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.h +1 -1
  466. data/ext/ice/cpp/src/IceSSL/SSLEngine.cpp +7 -16
  467. data/ext/ice/cpp/src/IceSSL/SSLEngine.h +1 -1
  468. data/ext/ice/cpp/src/IceSSL/SSLEngineF.h +1 -1
  469. data/ext/ice/cpp/src/IceSSL/SecureTransportCertificateI.cpp +1 -1
  470. data/ext/ice/cpp/src/IceSSL/SecureTransportEngine.cpp +1 -1
  471. data/ext/ice/cpp/src/IceSSL/SecureTransportEngine.h +1 -1
  472. data/ext/ice/cpp/src/IceSSL/SecureTransportEngineF.h +1 -1
  473. data/ext/ice/cpp/src/IceSSL/SecureTransportPluginI.cpp +1 -1
  474. data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.cpp +1 -1
  475. data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.h +1 -1
  476. data/ext/ice/cpp/src/IceSSL/SecureTransportUtil.cpp +7 -10
  477. data/ext/ice/cpp/src/IceSSL/SecureTransportUtil.h +1 -1
  478. data/ext/ice/cpp/src/IceSSL/TrustManager.cpp +4 -5
  479. data/ext/ice/cpp/src/IceSSL/TrustManager.h +1 -1
  480. data/ext/ice/cpp/src/IceSSL/TrustManagerF.h +1 -1
  481. data/ext/ice/cpp/src/IceSSL/UWPCertificateI.cpp +1 -1
  482. data/ext/ice/cpp/src/IceSSL/UWPEngine.cpp +1 -1
  483. data/ext/ice/cpp/src/IceSSL/UWPEngine.h +1 -1
  484. data/ext/ice/cpp/src/IceSSL/UWPEngineF.h +1 -1
  485. data/ext/ice/cpp/src/IceSSL/UWPPluginI.cpp +1 -1
  486. data/ext/ice/cpp/src/IceSSL/UWPTransceiverI.cpp +1 -1
  487. data/ext/ice/cpp/src/IceSSL/UWPTransceiverI.h +1 -1
  488. data/ext/ice/cpp/src/IceSSL/Util.cpp +1 -1
  489. data/ext/ice/cpp/src/IceSSL/Util.h +1 -1
  490. data/ext/ice/cpp/src/IceUtil/ConsoleUtil.cpp +1 -1
  491. data/ext/ice/cpp/src/IceUtil/ConvertUTF.cpp +1 -1
  492. data/ext/ice/cpp/src/IceUtil/ConvertUTF.h +1 -1
  493. data/ext/ice/cpp/src/IceUtil/CtrlCHandler.cpp +1 -1
  494. data/ext/ice/cpp/src/IceUtil/FileUtil.cpp +5 -5
  495. data/ext/ice/cpp/src/IceUtil/InputUtil.cpp +1 -1
  496. data/ext/ice/cpp/src/IceUtil/MutexProtocol.cpp +1 -1
  497. data/ext/ice/cpp/src/IceUtil/Options.cpp +1 -1
  498. data/ext/ice/cpp/src/IceUtil/OutputUtil.cpp +1 -1
  499. data/ext/ice/cpp/src/IceUtil/Random.cpp +1 -1
  500. data/ext/ice/cpp/src/IceUtil/RecMutex.cpp +1 -5
  501. data/ext/ice/cpp/src/IceUtil/Shared.cpp +1 -1
  502. data/ext/ice/cpp/src/IceUtil/StringConverter.cpp +1 -1
  503. data/ext/ice/cpp/src/IceUtil/StringUtil.cpp +1 -1
  504. data/ext/ice/cpp/src/IceUtil/ThreadException.cpp +1 -1
  505. data/ext/ice/cpp/src/IceUtil/Time.cpp +1 -1
  506. data/ext/ice/cpp/src/IceUtil/UUID.cpp +3 -3
  507. data/ext/ice/cpp/src/IceUtil/Unicode.cpp +1 -1
  508. data/ext/ice/cpp/src/IceUtil/Unicode.h +1 -1
  509. data/ext/ice/cpp/src/IceUtil/UtilException.cpp +1 -1
  510. data/ext/ice/cpp/src/Slice/CPlusPlusUtil.cpp +160 -150
  511. data/ext/ice/cpp/src/Slice/CPlusPlusUtil.h +9 -8
  512. data/ext/ice/cpp/src/Slice/Checksum.cpp +1 -1
  513. data/ext/ice/cpp/src/Slice/Checksum.h +1 -1
  514. data/ext/ice/cpp/src/Slice/FileTracker.cpp +1 -1
  515. data/ext/ice/cpp/src/Slice/FileTracker.h +1 -1
  516. data/ext/ice/cpp/src/Slice/Grammar.cpp +567 -585
  517. data/ext/ice/cpp/src/Slice/Grammar.h +2 -2
  518. data/ext/ice/cpp/src/Slice/GrammarUtil.h +1 -1
  519. data/ext/ice/cpp/src/Slice/JavaUtil.cpp +131 -47
  520. data/ext/ice/cpp/src/Slice/JavaUtil.h +10 -5
  521. data/ext/ice/cpp/src/Slice/MD5.cpp +1 -1
  522. data/ext/ice/cpp/src/Slice/MD5.h +1 -1
  523. data/ext/ice/cpp/src/Slice/PHPUtil.cpp +1 -1
  524. data/ext/ice/cpp/src/Slice/PHPUtil.h +1 -1
  525. data/ext/ice/cpp/src/Slice/Parser.cpp +383 -101
  526. data/ext/ice/cpp/src/Slice/Parser.h +40 -3
  527. data/ext/ice/cpp/src/Slice/Preprocessor.cpp +2 -1
  528. data/ext/ice/cpp/src/Slice/Preprocessor.h +2 -2
  529. data/ext/ice/cpp/src/Slice/Python.cpp +7 -15
  530. data/ext/ice/cpp/src/Slice/PythonUtil.cpp +66 -9
  531. data/ext/ice/cpp/src/Slice/PythonUtil.h +2 -2
  532. data/ext/ice/cpp/src/Slice/Ruby.cpp +1 -1
  533. data/ext/ice/cpp/src/Slice/RubyUtil.cpp +2 -2
  534. data/ext/ice/cpp/src/Slice/RubyUtil.h +1 -1
  535. data/ext/ice/cpp/src/Slice/Scanner.cpp +214 -135
  536. data/ext/ice/cpp/src/Slice/SliceUtil.cpp +1 -1
  537. data/ext/ice/cpp/src/Slice/StringLiteralUtil.cpp +99 -17
  538. data/ext/ice/cpp/src/Slice/Util.h +5 -4
  539. data/ice.gemspec +2 -2
  540. data/lib/Glacier2.rb +1 -1
  541. data/lib/Glacier2/Metrics.rb +2 -2
  542. data/lib/Glacier2/PermissionsVerifier.rb +2 -2
  543. data/lib/Glacier2/PermissionsVerifierF.rb +2 -2
  544. data/lib/Glacier2/Router.rb +2 -2
  545. data/lib/Glacier2/RouterF.rb +2 -2
  546. data/lib/Glacier2/SSLInfo.rb +2 -2
  547. data/lib/Glacier2/Session.rb +2 -2
  548. data/lib/Ice.rb +2 -2
  549. data/lib/Ice/BuiltinSequences.rb +2 -2
  550. data/lib/Ice/Communicator.rb +2 -2
  551. data/lib/Ice/CommunicatorF.rb +2 -2
  552. data/lib/Ice/Connection.rb +2 -2
  553. data/lib/Ice/ConnectionF.rb +2 -2
  554. data/lib/Ice/Current.rb +2 -2
  555. data/lib/Ice/Endpoint.rb +2 -2
  556. data/lib/Ice/EndpointF.rb +2 -2
  557. data/lib/Ice/EndpointTypes.rb +2 -2
  558. data/lib/Ice/FacetMap.rb +2 -2
  559. data/lib/Ice/Identity.rb +2 -2
  560. data/lib/Ice/ImplicitContext.rb +2 -2
  561. data/lib/Ice/ImplicitContextF.rb +2 -2
  562. data/lib/Ice/Instrumentation.rb +2 -2
  563. data/lib/Ice/InstrumentationF.rb +2 -2
  564. data/lib/Ice/LocalException.rb +2 -2
  565. data/lib/Ice/Locator.rb +2 -2
  566. data/lib/Ice/LocatorF.rb +2 -2
  567. data/lib/Ice/Logger.rb +2 -2
  568. data/lib/Ice/LoggerF.rb +2 -2
  569. data/lib/Ice/Metrics.rb +2 -2
  570. data/lib/Ice/ObjectAdapter.rb +2 -2
  571. data/lib/Ice/ObjectAdapterF.rb +2 -2
  572. data/lib/Ice/ObjectFactory.rb +2 -2
  573. data/lib/Ice/Plugin.rb +2 -2
  574. data/lib/Ice/PluginF.rb +2 -2
  575. data/lib/Ice/Process.rb +2 -2
  576. data/lib/Ice/ProcessF.rb +2 -2
  577. data/lib/Ice/Properties.rb +2 -2
  578. data/lib/Ice/PropertiesAdmin.rb +2 -2
  579. data/lib/Ice/PropertiesF.rb +2 -2
  580. data/lib/Ice/RemoteLogger.rb +2 -2
  581. data/lib/Ice/Router.rb +2 -2
  582. data/lib/Ice/RouterF.rb +2 -2
  583. data/lib/Ice/ServantLocator.rb +2 -2
  584. data/lib/Ice/ServantLocatorF.rb +2 -2
  585. data/lib/Ice/SliceChecksumDict.rb +2 -2
  586. data/lib/Ice/ValueFactory.rb +2 -2
  587. data/lib/Ice/Version.rb +2 -2
  588. data/lib/IceBox.rb +1 -1
  589. data/lib/IceBox/IceBox.rb +2 -2
  590. data/lib/IceGrid.rb +1 -1
  591. data/lib/IceGrid/Admin.rb +2 -2
  592. data/lib/IceGrid/Descriptor.rb +2 -2
  593. data/lib/IceGrid/Exception.rb +2 -2
  594. data/lib/IceGrid/FileParser.rb +2 -2
  595. data/lib/IceGrid/PluginFacade.rb +2 -2
  596. data/lib/IceGrid/Registry.rb +2 -2
  597. data/lib/IceGrid/Session.rb +2 -2
  598. data/lib/IceGrid/UserAccountMapper.rb +2 -2
  599. data/lib/IcePatch2.rb +1 -1
  600. data/lib/IcePatch2/FileInfo.rb +2 -2
  601. data/lib/IcePatch2/FileServer.rb +2 -2
  602. data/lib/IceStorm.rb +1 -1
  603. data/lib/IceStorm/IceStorm.rb +2 -2
  604. data/lib/IceStorm/Metrics.rb +2 -2
  605. data/slice/Glacier2/Metrics.ice +2 -2
  606. data/slice/Glacier2/PermissionsVerifier.ice +2 -2
  607. data/slice/Glacier2/PermissionsVerifierF.ice +2 -2
  608. data/slice/Glacier2/Router.ice +2 -2
  609. data/slice/Glacier2/RouterF.ice +2 -2
  610. data/slice/Glacier2/SSLInfo.ice +2 -2
  611. data/slice/Glacier2/Session.ice +2 -2
  612. data/slice/Ice/BuiltinSequences.ice +2 -2
  613. data/slice/Ice/Communicator.ice +66 -73
  614. data/slice/Ice/CommunicatorF.ice +2 -2
  615. data/slice/Ice/Connection.ice +47 -17
  616. data/slice/Ice/ConnectionF.ice +2 -2
  617. data/slice/Ice/Current.ice +4 -5
  618. data/slice/Ice/Endpoint.ice +16 -16
  619. data/slice/Ice/EndpointF.ice +2 -2
  620. data/slice/Ice/EndpointTypes.ice +2 -2
  621. data/slice/Ice/FacetMap.ice +2 -2
  622. data/slice/Ice/Identity.ice +2 -2
  623. data/slice/Ice/ImplicitContext.ice +6 -6
  624. data/slice/Ice/ImplicitContextF.ice +2 -2
  625. data/slice/Ice/Instrumentation.ice +2 -2
  626. data/slice/Ice/InstrumentationF.ice +2 -2
  627. data/slice/Ice/LocalException.ice +2 -2
  628. data/slice/Ice/Locator.ice +3 -3
  629. data/slice/Ice/LocatorF.ice +2 -2
  630. data/slice/Ice/Logger.ice +2 -2
  631. data/slice/Ice/LoggerF.ice +2 -2
  632. data/slice/Ice/Metrics.ice +2 -2
  633. data/slice/Ice/ObjectAdapter.ice +10 -10
  634. data/slice/Ice/ObjectAdapterF.ice +2 -2
  635. data/slice/Ice/ObjectFactory.ice +3 -3
  636. data/slice/Ice/Plugin.ice +4 -4
  637. data/slice/Ice/PluginF.ice +2 -2
  638. data/slice/Ice/Process.ice +2 -2
  639. data/slice/Ice/ProcessF.ice +2 -2
  640. data/slice/Ice/Properties.ice +11 -11
  641. data/slice/Ice/PropertiesAdmin.ice +2 -2
  642. data/slice/Ice/PropertiesF.ice +2 -2
  643. data/slice/Ice/RemoteLogger.ice +12 -23
  644. data/slice/Ice/Router.ice +2 -2
  645. data/slice/Ice/RouterF.ice +2 -2
  646. data/slice/Ice/ServantLocator.ice +2 -2
  647. data/slice/Ice/ServantLocatorF.ice +2 -2
  648. data/slice/Ice/SliceChecksumDict.ice +2 -2
  649. data/slice/Ice/ValueFactory.ice +14 -16
  650. data/slice/Ice/Version.ice +2 -2
  651. data/slice/IceBT/ConnectionInfo.ice +2 -2
  652. data/slice/IceBT/EndpointInfo.ice +2 -2
  653. data/slice/IceBT/Types.ice +2 -2
  654. data/slice/IceBox/IceBox.ice +3 -4
  655. data/slice/IceDiscovery/IceDiscovery.ice +2 -2
  656. data/slice/IceGrid/Admin.ice +2 -2
  657. data/slice/IceGrid/Descriptor.ice +2 -2
  658. data/slice/IceGrid/Exception.ice +2 -2
  659. data/slice/IceGrid/FileParser.ice +2 -2
  660. data/slice/IceGrid/PluginFacade.ice +6 -6
  661. data/slice/IceGrid/Registry.ice +2 -2
  662. data/slice/IceGrid/Session.ice +2 -2
  663. data/slice/IceGrid/UserAccountMapper.ice +2 -2
  664. data/slice/IceIAP/ConnectionInfo.ice +2 -2
  665. data/slice/IceIAP/EndpointInfo.ice +2 -2
  666. data/slice/IceLocatorDiscovery/IceLocatorDiscovery.ice +2 -2
  667. data/slice/IcePatch2/FileInfo.ice +2 -2
  668. data/slice/IcePatch2/FileServer.ice +2 -2
  669. data/slice/IceSSL/ConnectionInfo.ice +2 -2
  670. data/slice/IceSSL/ConnectionInfoF.ice +2 -2
  671. data/slice/IceSSL/EndpointInfo.ice +2 -2
  672. data/slice/IceStorm/IceStorm.ice +5 -6
  673. data/slice/IceStorm/Metrics.ice +2 -2
  674. metadata +3 -13
  675. data/BZIP2_LICENSE +0 -42
  676. data/ext/ice/bzip2/blocksort.c +0 -1094
  677. data/ext/ice/bzip2/bzlib.c +0 -1572
  678. data/ext/ice/bzip2/bzlib.h +0 -282
  679. data/ext/ice/bzip2/bzlib_private.h +0 -509
  680. data/ext/ice/bzip2/compress.c +0 -672
  681. data/ext/ice/bzip2/crctable.c +0 -104
  682. data/ext/ice/bzip2/decompress.c +0 -646
  683. data/ext/ice/bzip2/huffman.c +0 -205
  684. data/ext/ice/bzip2/randtable.c +0 -84
@@ -1,6 +1,6 @@
1
1
  // **********************************************************************
2
2
  //
3
- // Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
3
+ // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
4
4
  //
5
5
  // This copy of Ice is licensed to you under the terms described in the
6
6
  // ICE_LICENSE file included in this distribution.
@@ -37,11 +37,12 @@ const int TypeContextCpp11 = 64;
37
37
 
38
38
  bool isMovable(const TypePtr&);
39
39
 
40
- std::string typeToString(const TypePtr&, const StringList& = StringList(), int = 0);
41
- std::string typeToString(const TypePtr&, bool, const StringList& = StringList(), int = 0);
42
- std::string returnTypeToString(const TypePtr&, bool, const StringList& = StringList(), int = 0);
43
- std::string inputTypeToString(const TypePtr&, bool, const StringList& = StringList(), int = 0);
44
- std::string outputTypeToString(const TypePtr&, bool, const StringList& = StringList(), int = 0);
40
+ std::string getAbsolute(const std::string&, const std::string&);
41
+ std::string typeToString(const TypePtr&, const std::string& = "", const StringList& = StringList(), int = 0);
42
+ std::string typeToString(const TypePtr&, bool, const std::string& = "", const StringList& = StringList(), int = 0);
43
+ std::string returnTypeToString(const TypePtr&, bool, const std::string& = "", const StringList& = StringList(), int = 0);
44
+ std::string inputTypeToString(const TypePtr&, bool, const std::string& = "", const StringList& = StringList(), int = 0);
45
+ std::string outputTypeToString(const TypePtr&, bool, const std::string& = "", const StringList& = StringList(), int = 0);
45
46
  std::string operationModeToString(Operation::Mode, bool = false);
46
47
  std::string opFormatTypeToString(const OperationPtr&, bool);
47
48
 
@@ -55,7 +56,7 @@ void writeMarshalCode(::IceUtilInternal::Output&, const ParamDeclList&, const Op
55
56
  int = 0, const std::string& = "", const std::string& = "");
56
57
  void writeUnmarshalCode(::IceUtilInternal::Output&, const ParamDeclList&, const OperationPtr&, bool, int = 0,
57
58
  const std::string& = "", const std::string& = "", const std::string& = "");
58
- void writeAllocateCode(::IceUtilInternal::Output&, const ParamDeclList&, const OperationPtr&, bool,
59
+ void writeAllocateCode(::IceUtilInternal::Output&, const ParamDeclList&, const OperationPtr&, bool, const std::string&,
59
60
  int = 0, const std::string& = "");
60
61
 
61
62
  std::string getEndArg(const TypePtr&, const StringList&, const std::string&);
@@ -63,7 +64,7 @@ void writeEndCode(::IceUtilInternal::Output&, const ParamDeclList&, const Operat
63
64
  void writeMarshalUnmarshalDataMemberInHolder(IceUtilInternal::Output&, const std::string&, const DataMemberPtr&, bool);
64
65
  void writeMarshalUnmarshalAllInHolder(IceUtilInternal::Output&, const std::string&, const DataMemberList&, bool, bool);
65
66
  void writeStreamHelpers(::IceUtilInternal::Output&, const ContainedPtr&, DataMemberList, bool, bool, bool);
66
- void writeIceTuple(::IceUtilInternal::Output&, DataMemberList, int);
67
+ void writeIceTuple(::IceUtilInternal::Output&, const std::string&, DataMemberList, int);
67
68
 
68
69
  bool findMetaData(const std::string&, const ClassDeclPtr&, std::string&);
69
70
  bool findMetaData(const std::string&, const StringList&, std::string&);
@@ -1,6 +1,6 @@
1
1
  // **********************************************************************
2
2
  //
3
- // Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
3
+ // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
4
4
  //
5
5
  // This copy of Ice is licensed to you under the terms described in the
6
6
  // ICE_LICENSE file included in this distribution.
@@ -1,6 +1,6 @@
1
1
  // **********************************************************************
2
2
  //
3
- // Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
3
+ // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
4
4
  //
5
5
  // This copy of Ice is licensed to you under the terms described in the
6
6
  // ICE_LICENSE file included in this distribution.
@@ -1,6 +1,6 @@
1
1
  // **********************************************************************
2
2
  //
3
- // Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
3
+ // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
4
4
  //
5
5
  // This copy of Ice is licensed to you under the terms described in the
6
6
  // ICE_LICENSE file included in this distribution.
@@ -1,6 +1,6 @@
1
1
  // **********************************************************************
2
2
  //
3
- // Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
3
+ // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
4
4
  //
5
5
  // This copy of Ice is licensed to you under the terms described in the
6
6
  // ICE_LICENSE file included in this distribution.
@@ -75,7 +75,7 @@
75
75
 
76
76
  // **********************************************************************
77
77
  //
78
- // Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
78
+ // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
79
79
  //
80
80
  // This copy of Ice is licensed to you under the terms described in the
81
81
  // ICE_LICENSE file included in this distribution.
@@ -189,8 +189,8 @@ extern int slice_debug;
189
189
  ICE_IDEMPOTENT = 285,
190
190
  ICE_OPTIONAL = 286,
191
191
  ICE_VALUE = 287,
192
- ICE_SCOPE_DELIMITER = 288,
193
- ICE_IDENTIFIER = 289,
192
+ ICE_IDENTIFIER = 288,
193
+ ICE_SCOPED_IDENTIFIER = 289,
194
194
  ICE_STRING_LITERAL = 290,
195
195
  ICE_INTEGER_LITERAL = 291,
196
196
  ICE_FLOATING_POINT_LITERAL = 292,
@@ -453,16 +453,16 @@ union yyalloc
453
453
  /* YYFINAL -- State number of the termination state. */
454
454
  #define YYFINAL 11
455
455
  /* YYLAST -- Last index in YYTABLE. */
456
- #define YYLAST 876
456
+ #define YYLAST 869
457
457
 
458
458
  /* YYNTOKENS -- Number of terminals. */
459
459
  #define YYNTOKENS 55
460
460
  /* YYNNTS -- Number of nonterminals. */
461
461
  #define YYNNTS 86
462
462
  /* YYNRULES -- Number of rules. */
463
- #define YYNRULES 226
463
+ #define YYNRULES 225
464
464
  /* YYNRULES -- Number of states. */
465
- #define YYNSTATES 329
465
+ #define YYNSTATES 326
466
466
 
467
467
  /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
468
468
  #define YYUNDEFTOK 2
@@ -528,13 +528,13 @@ static const yytype_uint16 yyprhs[] =
528
528
  371, 374, 375, 377, 381, 383, 385, 387, 395, 403,
529
529
  414, 425, 428, 431, 432, 439, 440, 447, 451, 453,
530
530
  455, 459, 461, 462, 464, 466, 468, 469, 470, 474,
531
- 480, 485, 492, 496, 502, 505, 506, 508, 511, 515,
532
- 517, 519, 521, 523, 525, 527, 529, 531, 533, 536,
533
- 538, 540, 542, 545, 548, 550, 554, 556, 558, 559,
534
- 561, 563, 565, 567, 569, 571, 578, 584, 586, 588,
535
- 590, 592, 594, 596, 598, 600, 602, 604, 606, 608,
536
- 610, 612, 614, 616, 618, 620, 622, 624, 626, 628,
537
- 630, 632, 634, 636, 638, 640, 642
531
+ 480, 485, 492, 496, 502, 505, 506, 508, 510, 512,
532
+ 514, 516, 518, 520, 522, 524, 526, 528, 531, 533,
533
+ 535, 537, 540, 543, 545, 549, 551, 553, 554, 556,
534
+ 558, 560, 562, 564, 566, 573, 579, 581, 583, 585,
535
+ 587, 589, 591, 593, 595, 597, 599, 601, 603, 605,
536
+ 607, 609, 611, 613, 615, 617, 619, 621, 623, 625,
537
+ 627, 629, 631, 633, 635, 637
538
538
  };
539
539
 
540
540
  /* YYRHS -- A `-1'-separated list of the rules' RHS. */
@@ -551,17 +551,17 @@ static const yytype_int16 yyrhs[] =
551
551
  57, -1, -1, 121, 73, 46, -1, 121, -1, -1,
552
552
  122, 74, 46, -1, 122, -1, -1, 124, 75, 57,
553
553
  -1, -1, 139, 76, 46, -1, 139, -1, 1, 46,
554
- -1, -1, 3, 34, 78, 47, 60, 48, -1, 6,
555
- 34, -1, 6, 140, -1, 137, 79, -1, -1, 137,
554
+ -1, -1, 3, 33, 78, 47, 60, 48, -1, 6,
555
+ 33, -1, 6, 140, -1, 137, 79, -1, -1, 137,
556
556
  79, 83, 82, 47, 84, 48, -1, 12, 133, -1,
557
557
  -1, 59, 88, 46, 84, -1, 1, 46, 84, -1,
558
- 59, 88, -1, -1, 134, 34, -1, 40, 36, 49,
558
+ 59, 88, -1, -1, 134, 33, -1, 40, 36, 49,
559
559
  -1, 40, 133, 49, -1, 40, 49, -1, 31, -1,
560
- 86, 85, -1, 85, -1, 103, -1, 7, 34, -1,
560
+ 86, 85, -1, 85, -1, 103, -1, 7, 33, -1,
561
561
  7, 140, -1, 137, 89, -1, -1, 137, 89, 92,
562
562
  47, 93, 48, -1, 59, 94, 46, 93, -1, 1,
563
563
  46, 93, -1, 59, 94, -1, -1, 104, -1, 4,
564
- 34, -1, 4, 140, -1, 4, 38, 36, 49, -1,
564
+ 33, -1, 4, 140, -1, 4, 38, 36, 49, -1,
565
565
  4, 38, 133, 49, -1, 95, -1, 137, 95, -1,
566
566
  -1, 137, 96, 100, 101, 99, 47, 102, 48, -1,
567
567
  12, 133, -1, -1, 13, 115, -1, -1, 59, 110,
@@ -573,66 +573,65 @@ static const yytype_int16 yyrhs[] =
573
573
  -1, 30, 105, 38, -1, 105, 39, -1, 30, 105,
574
574
  39, -1, -1, 106, 131, 49, 108, 132, -1, -1,
575
575
  106, 1, 49, 109, 132, -1, 103, -1, 107, -1,
576
- 5, 34, -1, 5, 140, -1, 137, 111, -1, -1,
576
+ 5, 33, -1, 5, 140, -1, 137, 111, -1, -1,
577
577
  137, 111, 116, 114, 47, 117, 48, -1, 133, 51,
578
578
  115, -1, 133, -1, 24, -1, 32, -1, 12, 115,
579
579
  -1, -1, 59, 118, 46, 117, -1, 1, 46, 117,
580
580
  -1, 59, 118, -1, -1, 107, -1, 120, 51, 119,
581
581
  -1, 120, -1, 133, -1, 140, -1, 137, 8, 52,
582
- 59, 134, 53, 34, -1, 137, 8, 52, 59, 134,
582
+ 59, 134, 53, 33, -1, 137, 8, 52, 59, 134,
583
583
  53, 140, -1, 137, 9, 52, 59, 134, 51, 59,
584
- 134, 53, 34, -1, 137, 9, 52, 59, 134, 51,
585
- 59, 134, 53, 140, -1, 10, 34, -1, 10, 140,
584
+ 134, 53, 33, -1, 137, 9, 52, 59, 134, 51,
585
+ 59, 134, 53, 140, -1, 10, 33, -1, 10, 140,
586
586
  -1, -1, 137, 123, 125, 47, 127, 48, -1, -1,
587
587
  137, 10, 126, 47, 127, 48, -1, 128, 51, 127,
588
- -1, 128, -1, 34, -1, 34, 50, 129, -1, 140,
588
+ -1, 128, -1, 33, -1, 33, 50, 129, -1, 140,
589
589
  -1, -1, 36, -1, 133, -1, 11, -1, -1, -1,
590
590
  130, 59, 87, -1, 131, 51, 130, 59, 87, -1,
591
591
  130, 59, 134, 140, -1, 131, 51, 130, 59, 134,
592
592
  140, -1, 130, 59, 134, -1, 131, 51, 130, 59,
593
- 134, -1, 14, 119, -1, -1, 34, -1, 33, 34,
594
- -1, 133, 33, 34, -1, 16, -1, 17, -1, 18,
595
- -1, 19, -1, 20, -1, 21, -1, 22, -1, 23,
596
- -1, 24, -1, 24, 54, -1, 25, -1, 32, -1,
597
- 133, -1, 133, 54, -1, 35, 135, -1, 35, -1,
598
- 136, 51, 135, -1, 135, -1, 26, -1, -1, 36,
599
- -1, 37, -1, 133, -1, 35, -1, 28, -1, 29,
600
- -1, 27, 59, 134, 34, 50, 138, -1, 27, 59,
601
- 134, 50, 138, -1, 3, -1, 4, -1, 5, -1,
602
- 6, -1, 7, -1, 8, -1, 9, -1, 10, -1,
603
- 11, -1, 12, -1, 13, -1, 14, -1, 15, -1,
593
+ 134, -1, 14, 119, -1, -1, 33, -1, 34, -1,
604
594
  16, -1, 17, -1, 18, -1, 19, -1, 20, -1,
605
- 21, -1, 22, -1, 23, -1, 24, -1, 25, -1,
606
- 26, -1, 27, -1, 28, -1, 29, -1, 30, -1,
607
- 31, -1, 32, -1
595
+ 21, -1, 22, -1, 23, -1, 24, -1, 24, 54,
596
+ -1, 25, -1, 32, -1, 133, -1, 133, 54, -1,
597
+ 35, 135, -1, 35, -1, 136, 51, 135, -1, 135,
598
+ -1, 26, -1, -1, 36, -1, 37, -1, 133, -1,
599
+ 35, -1, 28, -1, 29, -1, 27, 59, 134, 33,
600
+ 50, 138, -1, 27, 59, 134, 50, 138, -1, 3,
601
+ -1, 4, -1, 5, -1, 6, -1, 7, -1, 8,
602
+ -1, 9, -1, 10, -1, 11, -1, 12, -1, 13,
603
+ -1, 14, -1, 15, -1, 16, -1, 17, -1, 18,
604
+ -1, 19, -1, 20, -1, 21, -1, 22, -1, 23,
605
+ -1, 24, -1, 25, -1, 26, -1, 27, -1, 28,
606
+ -1, 29, -1, 30, -1, 31, -1, 32, -1
608
607
  };
609
608
 
610
609
  /* YYRLINE[YYN] -- source line where rule number YYN was defined. */
611
610
  static const yytype_uint16 yyrline[] =
612
611
  {
613
- 0, 115, 115, 123, 127, 134, 143, 148, 157, 156,
614
- 166, 165, 176, 184, 183, 189, 188, 193, 198, 197,
615
- 203, 202, 207, 212, 211, 217, 216, 221, 226, 225,
616
- 231, 230, 235, 240, 239, 245, 244, 249, 254, 253,
617
- 258, 263, 262, 268, 267, 272, 276, 286, 285, 319,
618
- 323, 334, 345, 344, 371, 380, 388, 397, 400, 405,
619
- 412, 425, 445, 538, 546, 559, 567, 582, 588, 592,
620
- 603, 614, 613, 655, 664, 667, 672, 679, 685, 689,
621
- 700, 725, 827, 839, 853, 852, 892, 927, 935, 940,
622
- 948, 957, 960, 965, 972, 994, 1021, 1043, 1069, 1078,
623
- 1089, 1098, 1107, 1117, 1131, 1137, 1145, 1157, 1181, 1206,
624
- 1230, 1261, 1260, 1283, 1282, 1305, 1306, 1312, 1316, 1327,
625
- 1342, 1341, 1376, 1411, 1446, 1451, 1461, 1466, 1474, 1483,
626
- 1486, 1491, 1498, 1504, 1511, 1523, 1535, 1546, 1555, 1570,
627
- 1581, 1598, 1602, 1614, 1613, 1646, 1645, 1664, 1670, 1678,
628
- 1690, 1710, 1718, 1727, 1731, 1770, 1777, 1788, 1790, 1806,
629
- 1822, 1834, 1846, 1857, 1873, 1878, 1886, 1889, 1895, 1908,
630
- 1912, 1916, 1920, 1924, 1928, 1932, 1936, 1940, 1944, 1948,
631
- 1952, 1956, 1975, 2016, 2022, 2030, 2037, 2049, 2056, 2066,
632
- 2079, 2092, 2139, 2150, 2161, 2177, 2186, 2200, 2203, 2206,
633
- 2209, 2212, 2215, 2218, 2221, 2224, 2227, 2230, 2233, 2236,
634
- 2239, 2242, 2245, 2248, 2251, 2254, 2257, 2260, 2263, 2266,
635
- 2269, 2272, 2275, 2278, 2281, 2284, 2287
612
+ 0, 114, 114, 122, 126, 133, 142, 147, 156, 155,
613
+ 165, 164, 175, 183, 182, 188, 187, 192, 197, 196,
614
+ 202, 201, 206, 211, 210, 216, 215, 220, 225, 224,
615
+ 230, 229, 234, 239, 238, 244, 243, 248, 253, 252,
616
+ 257, 262, 261, 267, 266, 271, 275, 285, 284, 318,
617
+ 322, 333, 344, 343, 370, 379, 387, 396, 399, 404,
618
+ 411, 424, 444, 537, 545, 558, 566, 581, 587, 591,
619
+ 602, 613, 612, 654, 663, 666, 671, 678, 684, 688,
620
+ 699, 724, 826, 838, 852, 851, 891, 926, 934, 939,
621
+ 947, 956, 959, 964, 971, 993, 1020, 1042, 1068, 1077,
622
+ 1088, 1097, 1106, 1116, 1130, 1136, 1144, 1156, 1180, 1205,
623
+ 1229, 1260, 1259, 1282, 1281, 1304, 1305, 1311, 1315, 1326,
624
+ 1341, 1340, 1375, 1410, 1445, 1450, 1460, 1465, 1473, 1482,
625
+ 1485, 1490, 1497, 1503, 1510, 1522, 1534, 1545, 1554, 1569,
626
+ 1580, 1597, 1601, 1613, 1612, 1645, 1644, 1663, 1669, 1677,
627
+ 1689, 1709, 1717, 1726, 1730, 1769, 1776, 1787, 1789, 1805,
628
+ 1821, 1833, 1845, 1856, 1872, 1877, 1885, 1888, 1896, 1900,
629
+ 1904, 1908, 1912, 1916, 1920, 1924, 1928, 1932, 1936, 1940,
630
+ 1944, 1963, 2004, 2010, 2018, 2025, 2037, 2044, 2054, 2067,
631
+ 2080, 2127, 2138, 2149, 2165, 2174, 2188, 2191, 2194, 2197,
632
+ 2200, 2203, 2206, 2209, 2212, 2215, 2218, 2221, 2224, 2227,
633
+ 2230, 2233, 2236, 2239, 2242, 2245, 2248, 2251, 2254, 2257,
634
+ 2260, 2263, 2266, 2269, 2272, 2275
636
635
  };
637
636
  #endif
638
637
 
@@ -647,8 +646,8 @@ static const char *const yytname[] =
647
646
  "ICE_THROWS", "ICE_VOID", "ICE_BYTE", "ICE_BOOL", "ICE_SHORT", "ICE_INT",
648
647
  "ICE_LONG", "ICE_FLOAT", "ICE_DOUBLE", "ICE_STRING", "ICE_OBJECT",
649
648
  "ICE_LOCAL_OBJECT", "ICE_LOCAL", "ICE_CONST", "ICE_FALSE", "ICE_TRUE",
650
- "ICE_IDEMPOTENT", "ICE_OPTIONAL", "ICE_VALUE", "ICE_SCOPE_DELIMITER",
651
- "ICE_IDENTIFIER", "ICE_STRING_LITERAL", "ICE_INTEGER_LITERAL",
649
+ "ICE_IDEMPOTENT", "ICE_OPTIONAL", "ICE_VALUE", "ICE_IDENTIFIER",
650
+ "ICE_SCOPED_IDENTIFIER", "ICE_STRING_LITERAL", "ICE_INTEGER_LITERAL",
652
651
  "ICE_FLOATING_POINT_LITERAL", "ICE_IDENT_OP", "ICE_KEYWORD_OP",
653
652
  "ICE_OPTIONAL_OP", "ICE_METADATA_OPEN", "ICE_METADATA_CLOSE",
654
653
  "ICE_GLOBAL_METADATA_OPEN", "ICE_GLOBAL_METADATA_CLOSE", "BAD_CHAR",
@@ -706,13 +705,13 @@ static const yytype_uint8 yyr1[] =
706
705
  117, 117, 118, 119, 119, 120, 120, 121, 121, 122,
707
706
  122, 123, 123, 125, 124, 126, 124, 127, 127, 128,
708
707
  128, 128, 128, 129, 129, 130, 130, 131, 131, 131,
709
- 131, 131, 131, 131, 132, 132, 133, 133, 133, 134,
708
+ 131, 131, 131, 131, 132, 132, 133, 133, 134, 134,
710
709
  134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
711
- 134, 134, 134, 135, 135, 136, 136, 137, 137, 138,
712
- 138, 138, 138, 138, 138, 139, 139, 140, 140, 140,
710
+ 134, 134, 135, 135, 136, 136, 137, 137, 138, 138,
711
+ 138, 138, 138, 138, 139, 139, 140, 140, 140, 140,
713
712
  140, 140, 140, 140, 140, 140, 140, 140, 140, 140,
714
713
  140, 140, 140, 140, 140, 140, 140, 140, 140, 140,
715
- 140, 140, 140, 140, 140, 140, 140
714
+ 140, 140, 140, 140, 140, 140
716
715
  };
717
716
 
718
717
  /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
@@ -734,13 +733,13 @@ static const yytype_uint8 yyr2[] =
734
733
  2, 0, 1, 3, 1, 1, 1, 7, 7, 10,
735
734
  10, 2, 2, 0, 6, 0, 6, 3, 1, 1,
736
735
  3, 1, 0, 1, 1, 1, 0, 0, 3, 5,
737
- 4, 6, 3, 5, 2, 0, 1, 2, 3, 1,
738
- 1, 1, 1, 1, 1, 1, 1, 1, 2, 1,
739
- 1, 1, 2, 2, 1, 3, 1, 1, 0, 1,
740
- 1, 1, 1, 1, 1, 6, 5, 1, 1, 1,
736
+ 4, 6, 3, 5, 2, 0, 1, 1, 1, 1,
737
+ 1, 1, 1, 1, 1, 1, 1, 2, 1, 1,
738
+ 1, 2, 2, 1, 3, 1, 1, 0, 1, 1,
739
+ 1, 1, 1, 1, 6, 5, 1, 1, 1, 1,
741
740
  1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
742
741
  1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
743
- 1, 1, 1, 1, 1, 1, 1
742
+ 1, 1, 1, 1, 1, 1
744
743
  };
745
744
 
746
745
  /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM.
@@ -748,39 +747,39 @@ static const yytype_uint8 yyr2[] =
748
747
  means the default is an error. */
749
748
  static const yytype_uint8 yydefact[] =
750
749
  {
751
- 7, 0, 0, 0, 8, 0, 2, 184, 186, 0,
752
- 0, 1, 7, 0, 0, 187, 7, 10, 13, 27,
750
+ 7, 0, 0, 0, 8, 0, 2, 183, 185, 0,
751
+ 0, 1, 7, 0, 0, 186, 7, 10, 13, 27,
753
752
  28, 32, 33, 17, 18, 22, 23, 37, 40, 41,
754
- 0, 45, 183, 6, 0, 5, 9, 46, 47, 0,
753
+ 0, 45, 182, 6, 0, 5, 9, 46, 47, 0,
755
754
  7, 4, 0, 4, 0, 4, 0, 4, 0, 4,
756
755
  0, 0, 4, 0, 0, 0, 0, 0, 0, 145,
757
- 51, 70, 83, 87, 119, 143, 0, 185, 0, 169,
758
- 170, 171, 172, 173, 174, 175, 176, 177, 179, 180,
759
- 0, 166, 181, 0, 11, 3, 14, 26, 29, 31,
760
- 34, 16, 19, 21, 24, 36, 39, 42, 197, 198,
761
- 199, 200, 201, 202, 203, 204, 205, 206, 207, 208,
762
- 209, 210, 211, 212, 213, 214, 215, 216, 217, 218,
763
- 219, 220, 221, 222, 223, 224, 225, 226, 78, 0,
756
+ 51, 70, 83, 87, 119, 143, 0, 184, 0, 168,
757
+ 169, 170, 171, 172, 173, 174, 175, 176, 178, 179,
758
+ 166, 167, 180, 0, 11, 3, 14, 26, 29, 31,
759
+ 34, 16, 19, 21, 24, 36, 39, 42, 196, 197,
760
+ 198, 199, 200, 201, 202, 203, 204, 205, 206, 207,
761
+ 208, 209, 210, 211, 212, 213, 214, 215, 216, 217,
762
+ 218, 219, 220, 221, 222, 223, 224, 225, 78, 0,
764
763
  79, 117, 118, 49, 50, 68, 69, 7, 7, 141,
765
764
  0, 142, 0, 52, 0, 0, 89, 0, 120, 0,
766
- 44, 7, 178, 167, 0, 182, 0, 0, 0, 0,
767
- 0, 0, 152, 54, 0, 0, 86, 0, 84, 124,
768
- 125, 126, 123, 0, 152, 0, 168, 0, 193, 194,
769
- 192, 189, 190, 191, 196, 80, 81, 0, 0, 149,
770
- 0, 148, 151, 0, 0, 0, 0, 88, 0, 0,
771
- 0, 0, 48, 195, 0, 7, 0, 146, 152, 0,
772
- 0, 0, 0, 64, 0, 98, 0, 75, 77, 103,
773
- 72, 0, 122, 0, 0, 0, 144, 137, 138, 0,
774
- 153, 150, 154, 147, 0, 66, 0, 94, 58, 67,
775
- 97, 53, 74, 0, 63, 0, 0, 100, 0, 0,
776
- 60, 102, 0, 0, 0, 0, 106, 0, 0, 0,
777
- 0, 132, 130, 105, 121, 0, 57, 65, 0, 0,
778
- 96, 61, 62, 99, 0, 73, 0, 0, 115, 116,
779
- 92, 97, 85, 129, 0, 104, 107, 109, 0, 155,
780
- 7, 0, 0, 0, 95, 56, 101, 91, 104, 0,
781
- 108, 110, 113, 0, 111, 156, 128, 139, 140, 90,
782
- 165, 158, 162, 165, 7, 0, 114, 160, 112, 0,
783
- 164, 134, 135, 136, 159, 163, 0, 161, 133
765
+ 44, 7, 177, 181, 0, 0, 0, 0, 0, 0,
766
+ 152, 54, 0, 0, 86, 0, 84, 124, 125, 126,
767
+ 123, 0, 152, 0, 0, 192, 193, 191, 188, 189,
768
+ 190, 195, 80, 81, 0, 0, 149, 0, 148, 151,
769
+ 0, 0, 0, 0, 88, 0, 0, 0, 0, 48,
770
+ 194, 0, 7, 0, 146, 152, 0, 0, 0, 0,
771
+ 64, 0, 98, 0, 75, 77, 103, 72, 0, 122,
772
+ 0, 0, 0, 144, 137, 138, 0, 153, 150, 154,
773
+ 147, 0, 66, 0, 94, 58, 67, 97, 53, 74,
774
+ 0, 63, 0, 0, 100, 0, 0, 60, 102, 0,
775
+ 0, 0, 0, 106, 0, 0, 0, 0, 132, 130,
776
+ 105, 121, 0, 57, 65, 0, 0, 96, 61, 62,
777
+ 99, 0, 73, 0, 0, 115, 116, 92, 97, 85,
778
+ 129, 0, 104, 107, 109, 0, 155, 7, 0, 0,
779
+ 0, 95, 56, 101, 91, 104, 0, 108, 110, 113,
780
+ 0, 111, 156, 128, 139, 140, 90, 165, 158, 162,
781
+ 165, 7, 0, 114, 160, 112, 0, 164, 134, 135,
782
+ 136, 159, 163, 0, 161, 133
784
783
  };
785
784
 
786
785
  /* YYDEFGOTO[NTERM-NUM]. */
@@ -788,261 +787,259 @@ static const yytype_int16 yydefgoto[] =
788
787
  {
789
788
  -1, 3, 86, 4, 5, 6, 12, 40, 17, 41,
790
789
  46, 47, 48, 49, 42, 43, 44, 45, 50, 51,
791
- 52, 66, 18, 68, 60, 19, 20, 164, 143, 211,
792
- 235, 236, 237, 238, 61, 21, 22, 144, 196, 217,
793
- 62, 63, 23, 24, 198, 146, 168, 254, 239, 218,
794
- 259, 260, 261, 313, 310, 280, 64, 25, 26, 173,
795
- 171, 148, 225, 262, 320, 321, 27, 28, 65, 29,
796
- 149, 140, 190, 191, 231, 290, 291, 316, 82, 248,
797
- 8, 9, 30, 184, 31, 192
790
+ 52, 66, 18, 68, 60, 19, 20, 162, 143, 208,
791
+ 232, 233, 234, 235, 61, 21, 22, 144, 193, 214,
792
+ 62, 63, 23, 24, 195, 146, 166, 251, 236, 215,
793
+ 256, 257, 258, 310, 307, 277, 64, 25, 26, 171,
794
+ 169, 148, 222, 259, 317, 318, 27, 28, 65, 29,
795
+ 149, 140, 187, 188, 228, 287, 288, 313, 82, 245,
796
+ 8, 9, 30, 181, 31, 189
798
797
  };
799
798
 
800
799
  /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
801
800
  STATE-NUM. */
802
- #define YYPACT_NINF -260
801
+ #define YYPACT_NINF -278
803
802
  static const yytype_int16 yypact[] =
804
803
  {
805
- 13, -2, -2, 42, -260, 159, -260, -2, -260, -4,
806
- 28, -260, 10, 0, 32, -260, 3, -260, -260, 23,
807
- -260, 37, -260, 53, -260, 68, -260, 70, 85, -260,
808
- 194, 90, -260, -260, -2, -260, -260, -260, -260, 842,
809
- 10, 94, 102, 94, 105, 94, 106, 94, 107, 94,
810
- 108, 109, 94, 454, 522, 554, 586, 73, 89, 618,
811
- 14, 112, 24, 149, 18, -260, 124, -260, 128, -260,
812
- -260, -260, -260, -260, -260, -260, -260, 117, -260, -260,
813
- 145, -260, -13, -15, -260, -260, -260, -260, -260, -260,
814
- -260, -260, -260, -260, -260, -260, -260, -260, -260, -260,
815
- -260, -260, -260, -260, -260, -260, -260, -260, -260, -260,
816
- -260, -260, -260, -260, -260, -260, -260, -260, -260, -260,
817
- -260, -260, -260, -260, -260, -260, -260, -260, -260, 79,
818
- -260, -260, -260, -260, -260, -260, -260, 3, 3, -260,
819
- 134, -260, 57, -260, 135, 57, 175, 61, -260, 143,
820
- -260, 34, -260, -260, 157, -260, 144, 110, 146, 29,
821
- 842, 842, 650, 173, 160, 337, 173, 61, -260, -260,
822
- -260, -260, -1, 162, 650, 163, -260, 110, -260, -260,
823
- -260, -260, -260, 173, -260, -260, -260, 161, 164, 167,
824
- 165, 168, -260, 371, 166, 817, 174, -260, 176, 61,
825
- 269, 177, -260, -260, 682, 3, 96, -260, 650, 178,
826
- 817, 179, 337, -260, 40, 180, 842, 182, -260, 714,
827
- -260, 303, -260, 183, 766, 184, -260, -260, -260, 842,
828
- -260, -260, 173, -260, 371, -260, 842, 181, 189, -260,
829
- 714, -260, -260, 187, -260, 31, 110, 188, 192, 337,
830
- -260, -260, 191, 766, 193, 269, -260, 792, 842, 62,
831
- 86, -260, 196, -260, -260, 190, -260, -260, 110, 371,
832
- -260, -260, -260, -260, 110, -260, 303, 842, -260, -260,
833
- 198, 417, -260, -260, 95, -260, -260, -260, 199, -260,
834
- 3, -28, 269, 746, -260, -260, -260, -260, 192, 303,
835
- -260, -260, -260, 817, -260, 234, -260, -260, -260, -260,
836
- 233, -260, 714, 233, 3, 490, -260, -260, -260, 817,
837
- -260, 200, 173, -260, -260, 714, 490, -260, -260
804
+ 13, 1, 1, 42, -278, 156, -278, 1, -278, -7,
805
+ -3, -278, 10, 4, 33, -278, 6, -278, -278, 28,
806
+ -278, 30, -278, 32, -278, 39, -278, 52, 68, -278,
807
+ 200, 77, -278, -278, 1, -278, -278, -278, -278, 835,
808
+ 10, 84, 85, 84, 87, 84, 89, 84, 92, 84,
809
+ 93, 94, 84, 455, 523, 554, 585, 80, 96, 616,
810
+ 12, 35, 16, 76, 14, -278, 100, -278, 95, -278,
811
+ -278, -278, -278, -278, -278, -278, -278, 82, -278, -278,
812
+ -278, -278, 101, -12, -278, -278, -278, -278, -278, -278,
813
+ -278, -278, -278, -278, -278, -278, -278, -278, -278, -278,
814
+ -278, -278, -278, -278, -278, -278, -278, -278, -278, -278,
815
+ -278, -278, -278, -278, -278, -278, -278, -278, -278, -278,
816
+ -278, -278, -278, -278, -278, -278, -278, -278, -278, 59,
817
+ -278, -278, -278, -278, -278, -278, -278, 6, 6, -278,
818
+ 109, -278, 37, -278, 120, 37, 155, 57, -278, 123,
819
+ -278, 36, -278, -278, 121, 116, 126, 127, 835, 835,
820
+ 647, -278, 125, 338, -278, 57, -278, -278, -278, -278,
821
+ 128, 130, 647, 132, 116, -278, -278, -278, -278, -278,
822
+ -278, -278, -278, -278, 135, 134, 139, 143, 146, -278,
823
+ 372, 153, 810, 163, -278, 131, 57, 86, 164, -278,
824
+ -278, 678, 6, 63, -278, 647, 167, 810, 166, 338,
825
+ -278, 31, 168, 835, 171, -278, 709, -278, 304, -278,
826
+ 173, 759, 174, -278, -278, -278, 835, -278, -278, -278,
827
+ -278, 372, -278, 835, 175, 177, -278, 709, -278, -278,
828
+ 152, -278, 178, 116, 176, 191, 338, -278, -278, 182,
829
+ 759, 181, 86, -278, 785, 835, 74, 267, -278, 186,
830
+ -278, -278, 180, -278, -278, 116, 372, -278, -278, -278,
831
+ -278, 116, -278, 304, 835, -278, -278, 188, 418, -278,
832
+ -278, 90, -278, -278, -278, 189, -278, 6, -17, 86,
833
+ 740, -278, -278, -278, -278, 191, 304, -278, -278, -278,
834
+ 810, -278, 224, -278, -278, -278, -278, 223, -278, 709,
835
+ 223, 6, 491, -278, -278, -278, 810, -278, 190, -278,
836
+ -278, -278, 709, 491, -278, -278
838
837
  };
839
838
 
840
839
  /* YYPGOTO[NTERM-NUM]. */
841
840
  static const yytype_int16 yypgoto[] =
842
841
  {
843
- -260, -260, 131, -260, -16, -9, -260, -260, -260, -260,
844
- -260, -260, -260, -260, -260, -260, -260, -260, -260, -260,
845
- -260, -260, -260, -260, -260, -260, -260, -260, -260, -212,
846
- -191, -190, -235, -260, -260, -260, -260, -260, -197, -260,
847
- -260, -260, -260, -260, -260, -260, -260, -259, -43, -260,
848
- -8, -260, -3, -260, -260, -260, -260, -260, -260, -260,
849
- -139, -260, -237, -260, -74, -260, -260, -260, -260, -260,
850
- -260, -260, -160, -260, -260, -51, -260, -58, -118, -37,
851
- 9, 254, -260, -176, -260, -47
842
+ -278, -278, 151, -278, -16, -10, -278, -278, -278, -278,
843
+ -278, -278, -278, -278, -278, -278, -278, -278, -278, -278,
844
+ -278, -278, -278, -278, -278, -278, -278, -278, -278, -209,
845
+ -188, -181, -277, -278, -278, -278, -278, -278, -194, -278,
846
+ -278, -278, -278, -278, -278, -278, -278, -253, -11, -278,
847
+ -9, -278, -8, -278, -278, -278, -278, -278, -278, -278,
848
+ -134, -278, -234, -278, -79, -278, -278, -278, -278, -278,
849
+ -278, -278, -156, -278, -278, -56, -278, -63, -128, -34,
850
+ 26, 246, -278, -171, -278, -47
852
851
  };
853
852
 
854
853
  /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
855
854
  positive, shift that token. If negative, reduce the rule which
856
855
  number is the opposite. If YYTABLE_NINF, syntax error. */
857
- #define YYTABLE_NINF -189
856
+ #define YYTABLE_NINF -188
858
857
  static const yytype_int16 yytable[] =
859
858
  {
860
- 39, 203, 83, 36, 215, 216, 130, 132, 134, 136,
861
- -12, 159, 141, -12, 201, 242, 32, 297, 283, 156,
862
- 154, 304, 266, 305, 163, 247, 142, 166, 197, 172,
863
- 147, 84, 154, 7, 258, 157, -82, -82, 33, 183,
864
- 309, 155, 11, 67, 1, 267, 37, 34, 233, 172,
865
- 199, 1, 275, 2, 1, 306, 2, 295, -12, 183,
866
- 222, -55, 154, 277, 154, -127, 38, 258, 311, -25,
867
- 273, -82, 35, 80, 81, 1, 243, 2, 186, 34,
868
- 272, 172, -12, -30, 324, 169, 267, 288, 232, 244,
869
- 80, 81, 294, 170, 80, 81, 245, 289, 296, -15,
870
- 286, 287, -156, -156, -156, -156, -156, -156, -156, -156,
871
- -156, -156, 80, 81, -20, 158, -35, -156, -156, -156,
872
- -156, 160, 161, 187, 188, 137, -156, -156, 183, 80,
873
- 81, -38, 230, 300, 301, -157, -43, -157, 178, 179,
874
- 85, 138, 175, 80, 81, 180, 181, 182, 87, 195,
875
- 183, 89, 91, 93, 95, 96, 183, 228, 219, -71,
876
- 13, 145, 14, -188, -188, -188, -188, -188, -188, -188,
877
- 150, 152, 251, 240, 88, 151, 90, 210, 92, 153,
878
- 94, 162, 165, 97, 224, 15, 16, 263, 167, 229,
879
- 174, 176, 265, 270, 177, 185, 195, 322, 53, 54,
880
- 55, 56, 57, 58, 59, 253, 154, 193, 322, 200,
881
- 278, 202, 212, 207, 204, 205, 281, 206, 210, 208,
882
- 263, 285, 220, 221, 234, 226, 250, 241, 249, 255,
883
- 246, 268, 264, 195, 270, 269, 271, 276, 274, 224,
884
- 298, 282, 292, 293, 299, 289, 308, 315, 302, 284,
885
- 279, 326, 328, 210, 314, 318, 10, 0, 0, 0,
886
- 253, 0, 0, 0, 0, 317, 312, 0, 323, 0,
887
- 223, 0, 0, 0, 303, 0, 224, 0, 327, 323,
888
- 0, 0, 325, 253, -7, -7, -7, -7, -7, -7,
889
- -7, -7, -7, -7, -7, 0, 0, 0, 319, -7,
890
- -7, -7, -7, -7, 252, 0, 0, 0, 0, -7,
891
- 1, 0, 0, 0, 0, 0, 0, -131, -7, -7,
892
- -7, -7, -7, -7, -7, -7, -7, -7, -7, 0,
893
- 0, 0, 0, -7, -7, -7, -7, -7, 194, 0,
894
- 0, 0, 0, -7, 1, 0, 0, 0, 0, 0,
895
- 0, -93, 0, -7, -7, -7, -7, -7, -7, -7,
896
- -7, -7, -7, 0, 0, 0, 0, 0, -7, -7,
897
- -7, -7, 209, 0, 0, 0, 0, -7, 1, 0,
898
- 0, 0, 0, 0, 0, -76, 0, -7, -7, -7,
899
- -7, -7, -7, -7, -7, -7, -7, 0, 0, 0,
900
- 0, 0, -7, -7, -7, -7, 0, 0, 0, 0,
901
- 0, -7, 1, 0, 0, 0, 0, 0, 0, -59,
902
- 98, 99, 100, 101, 102, 103, 104, 105, 106, 107,
903
- 108, 109, 110, 111, 112, 113, 114, 115, 116, 117,
904
- 118, 119, 120, 121, 122, 123, 124, 125, 126, 127,
905
- 0, 250, 0, 0, 0, -105, -105, 98, 99, 100,
906
- 101, 102, 103, 104, 105, 106, 107, 108, 109, 110,
907
- 111, 112, 113, 114, 115, 116, 117, 118, 119, 120,
908
- 121, 122, 123, 124, 125, 126, 127, 0, 128, 0,
909
- 0, 0, 129, 98, 99, 100, 101, 102, 103, 104,
910
- 105, 106, 107, 108, 109, 110, 111, 112, 113, 114,
911
- 115, 116, 117, 118, 119, 120, 121, 122, 123, 124,
912
- 125, 126, 127, 80, 81, 98, 99, 100, 101, 102,
913
- 103, 104, 105, 106, 107, 108, 109, 110, 111, 112,
914
- 113, 114, 115, 116, 117, 118, 119, 120, 121, 122,
915
- 123, 124, 125, 126, 127, 0, 131, 98, 99, 100,
859
+ 39, 157, 36, 200, 212, 83, 130, 132, 134, 136,
860
+ -12, 213, 141, -12, 161, 239, 198, 164, 280, 170,
861
+ 294, 154, 263, 308, 142, 244, 147, 180, -82, -82,
862
+ 84, 194, 301, 32, 302, 33, 7, 170, 155, 321,
863
+ 255, 35, 11, 306, 34, 264, 180, 1, 34, 230,
864
+ 37, 1, 272, 2, 1, 303, 2, 292, -12, -55,
865
+ 67, -127, 219, -82, 80, 81, 38, 240, 170, 274,
866
+ 80, 81, 270, 255, -25, 229, -30, 1, -15, 2,
867
+ 241, 167, -71, 242, -12, -20, 264, 220, 145, 168,
868
+ 80, 81, 80, 81, 291, 156, 80, 81, -35, 227,
869
+ 293, -7, -7, -7, -7, -7, -7, -7, -7, -7,
870
+ -7, -7, 283, 284, -38, 180, -7, -7, -7, -7,
871
+ -7, 158, 159, -43, 184, 185, -7, 1, 297, 298,
872
+ 85, 87, 137, 89, -131, 91, 152, 180, 93, 95,
873
+ 96, 173, 151, 180, 175, 176, 150, 192, 138, 80,
874
+ 81, 177, 178, 179, 225, 153, 160, 13, 216, 14,
875
+ -187, -187, -187, -187, -187, -187, -187, 163, 165, 248,
876
+ 172, 174, 190, 237, 207, 182, 183, 197, 218, 196,
877
+ 199, 221, 15, 16, 319, 202, 226, 260, 201, 203,
878
+ 267, 204, 262, 192, 88, 319, 90, 205, 92, 209,
879
+ 94, 268, 250, 97, 53, 54, 55, 56, 57, 58,
880
+ 59, 217, 223, 231, 238, 207, 278, 246, 243, 252,
881
+ 260, 282, 261, 266, 247, 265, 271, 269, 273, 279,
882
+ 192, 267, 289, 290, 296, 286, 221, 312, 299, 275,
883
+ 295, 323, 276, 305, 325, 281, 311, 315, 10, 0,
884
+ 207, 0, 0, 0, 0, 0, 0, 250, 0, 0,
885
+ 0, 0, 314, 0, 0, 320, 309, 0, 285, 0,
886
+ 0, 300, 0, 221, 0, 324, 320, 0, 286, 0,
887
+ 250, 0, 322, -156, -156, -156, -156, -156, -156, -156,
888
+ -156, -156, -156, 0, 0, 316, 0, 0, -156, -156,
889
+ -156, -156, 0, 0, 0, 249, 0, -156, -156, 0,
890
+ 0, 0, 0, 0, 0, 0, -157, 0, -157, -7,
891
+ -7, -7, -7, -7, -7, -7, -7, -7, -7, -7,
892
+ 0, 0, 0, 0, -7, -7, -7, -7, -7, 191,
893
+ 0, 0, 0, 0, -7, 1, 0, 0, 0, 0,
894
+ 0, 0, -93, 0, -7, -7, -7, -7, -7, -7,
895
+ -7, -7, -7, -7, 0, 0, 0, 0, 0, -7,
896
+ -7, -7, -7, 206, 0, 0, 0, 0, -7, 1,
897
+ 0, 0, 0, 0, 0, 0, -76, 0, -7, -7,
898
+ -7, -7, -7, -7, -7, -7, -7, -7, 0, 0,
899
+ 0, 0, 0, -7, -7, -7, -7, 0, 0, 0,
900
+ 0, 0, -7, 1, 0, 0, 0, 0, 0, 0,
901
+ -59, 98, 99, 100, 101, 102, 103, 104, 105, 106,
902
+ 107, 108, 109, 110, 111, 112, 113, 114, 115, 116,
903
+ 117, 118, 119, 120, 121, 122, 123, 124, 125, 126,
904
+ 127, 247, 0, 0, 0, 0, -105, -105, 98, 99,
905
+ 100, 101, 102, 103, 104, 105, 106, 107, 108, 109,
906
+ 110, 111, 112, 113, 114, 115, 116, 117, 118, 119,
907
+ 120, 121, 122, 123, 124, 125, 126, 127, 128, 0,
908
+ 0, 0, 0, 129, 98, 99, 100, 101, 102, 103,
909
+ 104, 105, 106, 107, 108, 109, 110, 111, 112, 113,
910
+ 114, 115, 116, 117, 118, 119, 120, 121, 122, 123,
911
+ 124, 125, 126, 127, 80, 81, 98, 99, 100, 101,
912
+ 102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
913
+ 112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
914
+ 122, 123, 124, 125, 126, 127, 131, 98, 99, 100,
916
915
  101, 102, 103, 104, 105, 106, 107, 108, 109, 110,
917
916
  111, 112, 113, 114, 115, 116, 117, 118, 119, 120,
918
- 121, 122, 123, 124, 125, 126, 127, 0, 133, 98,
917
+ 121, 122, 123, 124, 125, 126, 127, 133, 98, 99,
918
+ 100, 101, 102, 103, 104, 105, 106, 107, 108, 109,
919
+ 110, 111, 112, 113, 114, 115, 116, 117, 118, 119,
920
+ 120, 121, 122, 123, 124, 125, 126, 127, 135, 98,
919
921
  99, 100, 101, 102, 103, 104, 105, 106, 107, 108,
920
922
  109, 110, 111, 112, 113, 114, 115, 116, 117, 118,
921
- 119, 120, 121, 122, 123, 124, 125, 126, 127, 0,
922
- 135, 98, 99, 100, 101, 102, 103, 104, 105, 106,
923
+ 119, 120, 121, 122, 123, 124, 125, 126, 127, 139,
924
+ 98, 99, 100, 101, 102, 103, 104, 105, 106, 107,
925
+ 108, 109, 110, 111, 112, 113, 114, 115, 116, 117,
926
+ 118, 119, 120, 121, 122, 123, 124, 125, 126, 127,
927
+ 186, 98, 99, 100, 101, 102, 103, 104, 105, 106,
923
928
  107, 108, 109, 110, 111, 112, 113, 114, 115, 116,
924
929
  117, 118, 119, 120, 121, 122, 123, 124, 125, 126,
925
- 127, 0, 139, 98, 99, 100, 101, 102, 103, 104,
930
+ 127, 224, 98, 99, 100, 101, 102, 103, 104, 105,
931
+ 106, 107, 108, 109, 110, 111, 112, 113, 114, 115,
932
+ 116, 117, 118, 119, 120, 121, 122, 123, 124, 125,
933
+ 126, 127, 247, 98, 99, 100, 101, 102, 103, 104,
926
934
  105, 106, 107, 108, 109, 110, 111, 112, 113, 114,
927
935
  115, 116, 117, 118, 119, 120, 121, 122, 123, 124,
928
- 125, 126, 127, 0, 189, 98, 99, 100, 101, 102,
929
- 103, 104, 105, 106, 107, 108, 109, 110, 111, 112,
930
- 113, 114, 115, 116, 117, 118, 119, 120, 121, 122,
931
- 123, 124, 125, 126, 127, 0, 227, 98, 99, 100,
932
- 101, 102, 103, 104, 105, 106, 107, 108, 109, 110,
933
- 111, 112, 113, 114, 115, 116, 117, 118, 119, 120,
934
- 121, 122, 123, 124, 125, 126, 127, 0, 250, 98,
935
- 99, 100, 101, 102, 103, 104, 105, 106, 107, 108,
936
- 109, 110, 111, 112, 113, 114, 115, 116, 117, 118,
937
- 119, 120, 121, 122, 123, 124, 125, 126, 127, 0,
938
- 307, 256, 69, 70, 71, 72, 73, 74, 75, 76,
939
- 77, 78, 0, 0, 0, 0, 257, 213, 79, 80,
940
- 81, 0, 0, 0, 0, 0, 214, 256, 69, 70,
941
- 71, 72, 73, 74, 75, 76, 77, 78, 0, 0,
942
- 0, 0, 0, 213, 79, 80, 81, 0, 0, 0,
943
- 0, 0, 214, 69, 70, 71, 72, 73, 74, 75,
944
- 76, 77, 78, 0, 0, 0, 0, 0, 213, 79,
945
- 80, 81, 0, 0, 0, 0, 0, 214, 69, 70,
946
- 71, 72, 73, 74, 75, 76, 77, 78, 0, 0,
947
- 0, 0, 0, 0, 79, 80, 81
936
+ 125, 126, 127, 304, 253, 69, 70, 71, 72, 73,
937
+ 74, 75, 76, 77, 78, 0, 0, 0, 0, 254,
938
+ 210, 79, 80, 81, 0, 0, 0, 0, 0, 211,
939
+ 253, 69, 70, 71, 72, 73, 74, 75, 76, 77,
940
+ 78, 0, 0, 0, 0, 0, 210, 79, 80, 81,
941
+ 0, 0, 0, 0, 0, 211, 69, 70, 71, 72,
942
+ 73, 74, 75, 76, 77, 78, 0, 0, 0, 0,
943
+ 0, 210, 79, 80, 81, 0, 0, 0, 0, 0,
944
+ 211, 69, 70, 71, 72, 73, 74, 75, 76, 77,
945
+ 78, 0, 0, 0, 0, 0, 0, 79, 80, 81
948
946
  };
949
947
 
950
948
  #define yypact_value_is_default(Yystate) \
951
- (!!((Yystate) == (-260)))
949
+ (!!((Yystate) == (-278)))
952
950
 
953
951
  #define yytable_value_is_error(Yytable_value) \
954
952
  YYID (0)
955
953
 
956
954
  static const yytype_int16 yycheck[] =
957
955
  {
958
- 16, 177, 39, 12, 195, 195, 53, 54, 55, 56,
959
- 0, 129, 59, 0, 174, 212, 7, 276, 255, 34,
960
- 33, 49, 234, 51, 142, 216, 12, 145, 167, 147,
961
- 12, 40, 33, 35, 224, 50, 12, 13, 42, 157,
962
- 299, 54, 0, 34, 41, 236, 46, 51, 208, 167,
963
- 51, 41, 249, 43, 41, 292, 43, 269, 48, 177,
964
- 199, 47, 33, 253, 33, 47, 34, 257, 303, 46,
965
- 246, 47, 44, 33, 34, 41, 36, 43, 49, 51,
966
- 49, 199, 48, 46, 319, 24, 277, 1, 206, 49,
967
- 33, 34, 268, 32, 33, 34, 214, 11, 274, 46,
968
- 38, 39, 16, 17, 18, 19, 20, 21, 22, 23,
969
- 24, 25, 33, 34, 46, 36, 46, 31, 32, 33,
970
- 34, 137, 138, 160, 161, 52, 40, 41, 246, 33,
971
- 34, 46, 36, 38, 39, 49, 46, 51, 28, 29,
972
- 46, 52, 151, 33, 34, 35, 36, 37, 46, 165,
973
- 268, 46, 46, 46, 46, 46, 274, 204, 195, 47,
974
- 1, 12, 3, 4, 5, 6, 7, 8, 9, 10,
975
- 46, 54, 219, 210, 43, 47, 45, 193, 47, 34,
976
- 49, 47, 47, 52, 200, 26, 27, 224, 13, 205,
977
- 47, 34, 229, 240, 50, 49, 212, 315, 4, 5,
978
- 6, 7, 8, 9, 10, 221, 33, 47, 326, 47,
979
- 253, 48, 46, 48, 53, 51, 253, 50, 234, 51,
980
- 257, 258, 48, 47, 46, 48, 34, 48, 46, 46,
981
- 50, 50, 48, 249, 281, 46, 49, 46, 50, 255,
982
- 277, 48, 46, 53, 46, 11, 293, 14, 49, 257,
983
- 253, 51, 326, 269, 305, 313, 2, -1, -1, -1,
984
- 276, -1, -1, -1, -1, 312, 303, -1, 315, -1,
985
- 1, -1, -1, -1, 290, -1, 292, -1, 325, 326,
986
- -1, -1, 319, 299, 15, 16, 17, 18, 19, 20,
987
- 21, 22, 23, 24, 25, -1, -1, -1, 314, 30,
988
- 31, 32, 33, 34, 1, -1, -1, -1, -1, 40,
989
- 41, -1, -1, -1, -1, -1, -1, 48, 15, 16,
990
- 17, 18, 19, 20, 21, 22, 23, 24, 25, -1,
991
- -1, -1, -1, 30, 31, 32, 33, 34, 1, -1,
992
- -1, -1, -1, 40, 41, -1, -1, -1, -1, -1,
993
- -1, 48, -1, 16, 17, 18, 19, 20, 21, 22,
994
- 23, 24, 25, -1, -1, -1, -1, -1, 31, 32,
995
- 33, 34, 1, -1, -1, -1, -1, 40, 41, -1,
996
- -1, -1, -1, -1, -1, 48, -1, 16, 17, 18,
997
- 19, 20, 21, 22, 23, 24, 25, -1, -1, -1,
998
- -1, -1, 31, 32, 33, 34, -1, -1, -1, -1,
999
- -1, 40, 41, -1, -1, -1, -1, -1, -1, 48,
1000
- 3, 4, 5, 6, 7, 8, 9, 10, 11, 12,
1001
- 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
1002
- 23, 24, 25, 26, 27, 28, 29, 30, 31, 32,
1003
- -1, 34, -1, -1, -1, 38, 39, 3, 4, 5,
1004
- 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
956
+ 16, 129, 12, 174, 192, 39, 53, 54, 55, 56,
957
+ 0, 192, 59, 0, 142, 209, 172, 145, 252, 147,
958
+ 273, 33, 231, 300, 12, 213, 12, 155, 12, 13,
959
+ 40, 165, 49, 7, 51, 42, 35, 165, 50, 316,
960
+ 221, 44, 0, 296, 51, 233, 174, 41, 51, 205,
961
+ 46, 41, 246, 43, 41, 289, 43, 266, 48, 47,
962
+ 34, 47, 196, 47, 33, 34, 33, 36, 196, 250,
963
+ 33, 34, 243, 254, 46, 203, 46, 41, 46, 43,
964
+ 49, 24, 47, 211, 48, 46, 274, 1, 12, 32,
965
+ 33, 34, 33, 34, 265, 36, 33, 34, 46, 36,
966
+ 271, 15, 16, 17, 18, 19, 20, 21, 22, 23,
967
+ 24, 25, 38, 39, 46, 243, 30, 31, 32, 33,
968
+ 34, 137, 138, 46, 158, 159, 40, 41, 38, 39,
969
+ 46, 46, 52, 46, 48, 46, 54, 265, 46, 46,
970
+ 46, 151, 47, 271, 28, 29, 46, 163, 52, 33,
971
+ 34, 35, 36, 37, 201, 54, 47, 1, 192, 3,
972
+ 4, 5, 6, 7, 8, 9, 10, 47, 13, 216,
973
+ 47, 50, 47, 207, 190, 49, 49, 47, 47, 51,
974
+ 48, 197, 26, 27, 312, 51, 202, 221, 53, 50,
975
+ 237, 48, 226, 209, 43, 323, 45, 51, 47, 46,
976
+ 49, 49, 218, 52, 4, 5, 6, 7, 8, 9,
977
+ 10, 48, 48, 46, 48, 231, 250, 46, 50, 46,
978
+ 254, 255, 48, 46, 33, 50, 50, 49, 46, 48,
979
+ 246, 278, 46, 53, 46, 11, 252, 14, 49, 250,
980
+ 274, 51, 250, 290, 323, 254, 302, 310, 2, -1,
981
+ 266, -1, -1, -1, -1, -1, -1, 273, -1, -1,
982
+ -1, -1, 309, -1, -1, 312, 300, -1, 1, -1,
983
+ -1, 287, -1, 289, -1, 322, 323, -1, 11, -1,
984
+ 296, -1, 316, 16, 17, 18, 19, 20, 21, 22,
985
+ 23, 24, 25, -1, -1, 311, -1, -1, 31, 32,
986
+ 33, 34, -1, -1, -1, 1, -1, 40, 41, -1,
987
+ -1, -1, -1, -1, -1, -1, 49, -1, 51, 15,
1005
988
  16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
1006
- 26, 27, 28, 29, 30, 31, 32, -1, 34, -1,
1007
- -1, -1, 38, 3, 4, 5, 6, 7, 8, 9,
1008
- 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
1009
- 20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
1010
- 30, 31, 32, 33, 34, 3, 4, 5, 6, 7,
1011
- 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
1012
- 18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
1013
- 28, 29, 30, 31, 32, -1, 34, 3, 4, 5,
989
+ -1, -1, -1, -1, 30, 31, 32, 33, 34, 1,
990
+ -1, -1, -1, -1, 40, 41, -1, -1, -1, -1,
991
+ -1, -1, 48, -1, 16, 17, 18, 19, 20, 21,
992
+ 22, 23, 24, 25, -1, -1, -1, -1, -1, 31,
993
+ 32, 33, 34, 1, -1, -1, -1, -1, 40, 41,
994
+ -1, -1, -1, -1, -1, -1, 48, -1, 16, 17,
995
+ 18, 19, 20, 21, 22, 23, 24, 25, -1, -1,
996
+ -1, -1, -1, 31, 32, 33, 34, -1, -1, -1,
997
+ -1, -1, 40, 41, -1, -1, -1, -1, -1, -1,
998
+ 48, 3, 4, 5, 6, 7, 8, 9, 10, 11,
999
+ 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
1000
+ 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
1001
+ 32, 33, -1, -1, -1, -1, 38, 39, 3, 4,
1002
+ 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
1003
+ 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
1004
+ 25, 26, 27, 28, 29, 30, 31, 32, 33, -1,
1005
+ -1, -1, -1, 38, 3, 4, 5, 6, 7, 8,
1006
+ 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
1007
+ 19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
1008
+ 29, 30, 31, 32, 33, 34, 3, 4, 5, 6,
1009
+ 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
1010
+ 17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
1011
+ 27, 28, 29, 30, 31, 32, 33, 3, 4, 5,
1014
1012
  6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
1015
1013
  16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
1016
- 26, 27, 28, 29, 30, 31, 32, -1, 34, 3,
1014
+ 26, 27, 28, 29, 30, 31, 32, 33, 3, 4,
1015
+ 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
1016
+ 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
1017
+ 25, 26, 27, 28, 29, 30, 31, 32, 33, 3,
1017
1018
  4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
1018
1019
  14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
1019
- 24, 25, 26, 27, 28, 29, 30, 31, 32, -1,
1020
- 34, 3, 4, 5, 6, 7, 8, 9, 10, 11,
1020
+ 24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
1021
+ 3, 4, 5, 6, 7, 8, 9, 10, 11, 12,
1022
+ 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
1023
+ 23, 24, 25, 26, 27, 28, 29, 30, 31, 32,
1024
+ 33, 3, 4, 5, 6, 7, 8, 9, 10, 11,
1021
1025
  12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
1022
1026
  22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
1023
- 32, -1, 34, 3, 4, 5, 6, 7, 8, 9,
1027
+ 32, 33, 3, 4, 5, 6, 7, 8, 9, 10,
1028
+ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
1029
+ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
1030
+ 31, 32, 33, 3, 4, 5, 6, 7, 8, 9,
1024
1031
  10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
1025
1032
  20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
1026
- 30, 31, 32, -1, 34, 3, 4, 5, 6, 7,
1027
- 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
1028
- 18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
1029
- 28, 29, 30, 31, 32, -1, 34, 3, 4, 5,
1030
- 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
1031
- 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
1032
- 26, 27, 28, 29, 30, 31, 32, -1, 34, 3,
1033
- 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
1034
- 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
1035
- 24, 25, 26, 27, 28, 29, 30, 31, 32, -1,
1036
- 34, 15, 16, 17, 18, 19, 20, 21, 22, 23,
1037
- 24, 25, -1, -1, -1, -1, 30, 31, 32, 33,
1038
- 34, -1, -1, -1, -1, -1, 40, 15, 16, 17,
1039
- 18, 19, 20, 21, 22, 23, 24, 25, -1, -1,
1040
- -1, -1, -1, 31, 32, 33, 34, -1, -1, -1,
1041
- -1, -1, 40, 16, 17, 18, 19, 20, 21, 22,
1042
- 23, 24, 25, -1, -1, -1, -1, -1, 31, 32,
1043
- 33, 34, -1, -1, -1, -1, -1, 40, 16, 17,
1044
- 18, 19, 20, 21, 22, 23, 24, 25, -1, -1,
1045
- -1, -1, -1, -1, 32, 33, 34
1033
+ 30, 31, 32, 33, 15, 16, 17, 18, 19, 20,
1034
+ 21, 22, 23, 24, 25, -1, -1, -1, -1, 30,
1035
+ 31, 32, 33, 34, -1, -1, -1, -1, -1, 40,
1036
+ 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
1037
+ 25, -1, -1, -1, -1, -1, 31, 32, 33, 34,
1038
+ -1, -1, -1, -1, -1, 40, 16, 17, 18, 19,
1039
+ 20, 21, 22, 23, 24, 25, -1, -1, -1, -1,
1040
+ -1, 31, 32, 33, 34, -1, -1, -1, -1, -1,
1041
+ 40, 16, 17, 18, 19, 20, 21, 22, 23, 24,
1042
+ 25, -1, -1, -1, -1, -1, -1, 32, 33, 34
1046
1043
  };
1047
1044
 
1048
1045
  /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
@@ -1052,7 +1049,7 @@ static const yytype_uint8 yystos[] =
1052
1049
  0, 41, 43, 56, 58, 59, 60, 35, 135, 136,
1053
1050
  136, 0, 61, 1, 3, 26, 27, 63, 77, 80,
1054
1051
  81, 90, 91, 97, 98, 112, 113, 121, 122, 124,
1055
- 137, 139, 135, 42, 51, 44, 60, 46, 34, 59,
1052
+ 137, 139, 135, 42, 51, 44, 60, 46, 33, 59,
1056
1053
  62, 64, 69, 70, 71, 72, 65, 66, 67, 68,
1057
1054
  73, 74, 75, 4, 5, 6, 7, 8, 9, 10,
1058
1055
  79, 89, 95, 96, 111, 123, 76, 135, 78, 16,
@@ -1061,27 +1058,27 @@ static const yytype_uint8 yystos[] =
1061
1058
  57, 46, 57, 46, 57, 46, 46, 57, 3, 4,
1062
1059
  5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
1063
1060
  15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
1064
- 25, 26, 27, 28, 29, 30, 31, 32, 34, 38,
1065
- 140, 34, 140, 34, 140, 34, 140, 52, 52, 34,
1061
+ 25, 26, 27, 28, 29, 30, 31, 32, 33, 38,
1062
+ 140, 33, 140, 33, 140, 33, 140, 52, 52, 33,
1066
1063
  126, 140, 12, 83, 92, 12, 100, 12, 116, 125,
1067
- 46, 47, 54, 34, 33, 54, 34, 50, 36, 133,
1068
- 59, 59, 47, 133, 82, 47, 133, 13, 101, 24,
1069
- 32, 115, 133, 114, 47, 60, 34, 50, 28, 29,
1070
- 35, 36, 37, 133, 138, 49, 49, 134, 134, 34,
1071
- 127, 128, 140, 47, 1, 59, 93, 115, 99, 51,
1072
- 47, 127, 48, 138, 53, 51, 50, 48, 51, 1,
1073
- 59, 84, 46, 31, 40, 85, 86, 94, 104, 134,
1074
- 48, 47, 115, 1, 59, 117, 48, 34, 140, 59,
1075
- 36, 129, 133, 127, 46, 85, 86, 87, 88, 103,
1076
- 134, 48, 93, 36, 49, 133, 50, 85, 134, 46,
1077
- 34, 140, 1, 59, 102, 46, 15, 30, 86, 105,
1078
- 106, 107, 118, 134, 48, 134, 84, 85, 50, 46,
1079
- 140, 49, 49, 138, 50, 93, 46, 86, 103, 107,
1080
- 110, 134, 48, 117, 105, 134, 38, 39, 1, 11,
1081
- 130, 131, 46, 53, 138, 84, 138, 102, 134, 46,
1082
- 38, 39, 49, 59, 49, 51, 117, 34, 140, 102,
1083
- 109, 87, 134, 108, 130, 14, 132, 140, 132, 59,
1084
- 119, 120, 133, 140, 87, 134, 51, 140, 119
1064
+ 46, 47, 54, 54, 33, 50, 36, 133, 59, 59,
1065
+ 47, 133, 82, 47, 133, 13, 101, 24, 32, 115,
1066
+ 133, 114, 47, 60, 50, 28, 29, 35, 36, 37,
1067
+ 133, 138, 49, 49, 134, 134, 33, 127, 128, 140,
1068
+ 47, 1, 59, 93, 115, 99, 51, 47, 127, 48,
1069
+ 138, 53, 51, 50, 48, 51, 1, 59, 84, 46,
1070
+ 31, 40, 85, 86, 94, 104, 134, 48, 47, 115,
1071
+ 1, 59, 117, 48, 33, 140, 59, 36, 129, 133,
1072
+ 127, 46, 85, 86, 87, 88, 103, 134, 48, 93,
1073
+ 36, 49, 133, 50, 85, 134, 46, 33, 140, 1,
1074
+ 59, 102, 46, 15, 30, 86, 105, 106, 107, 118,
1075
+ 134, 48, 134, 84, 85, 50, 46, 140, 49, 49,
1076
+ 138, 50, 93, 46, 86, 103, 107, 110, 134, 48,
1077
+ 117, 105, 134, 38, 39, 1, 11, 130, 131, 46,
1078
+ 53, 138, 84, 138, 102, 134, 46, 38, 39, 49,
1079
+ 59, 49, 51, 117, 33, 140, 102, 109, 87, 134,
1080
+ 108, 130, 14, 132, 140, 132, 59, 119, 120, 133,
1081
+ 140, 87, 134, 51, 140, 119
1085
1082
  };
1086
1083
 
1087
1084
  #define yyerrok (yyerrstatus = 0)
@@ -1896,28 +1893,28 @@ yyreduce:
1896
1893
  {
1897
1894
  case 2:
1898
1895
  /* Line 1792 of yacc.c */
1899
- #line 116 "src/Slice/Grammar.y"
1896
+ #line 115 "src/Slice/Grammar.y"
1900
1897
  {
1901
1898
  }
1902
1899
  break;
1903
1900
 
1904
1901
  case 3:
1905
1902
  /* Line 1792 of yacc.c */
1906
- #line 124 "src/Slice/Grammar.y"
1903
+ #line 123 "src/Slice/Grammar.y"
1907
1904
  {
1908
1905
  }
1909
1906
  break;
1910
1907
 
1911
1908
  case 4:
1912
1909
  /* Line 1792 of yacc.c */
1913
- #line 127 "src/Slice/Grammar.y"
1910
+ #line 126 "src/Slice/Grammar.y"
1914
1911
  {
1915
1912
  }
1916
1913
  break;
1917
1914
 
1918
1915
  case 5:
1919
1916
  /* Line 1792 of yacc.c */
1920
- #line 135 "src/Slice/Grammar.y"
1917
+ #line 134 "src/Slice/Grammar.y"
1921
1918
  {
1922
1919
  (yyval) = (yyvsp[(2) - (3)]);
1923
1920
  }
@@ -1925,7 +1922,7 @@ yyreduce:
1925
1922
 
1926
1923
  case 6:
1927
1924
  /* Line 1792 of yacc.c */
1928
- #line 144 "src/Slice/Grammar.y"
1925
+ #line 143 "src/Slice/Grammar.y"
1929
1926
  {
1930
1927
  (yyval) = (yyvsp[(2) - (3)]);
1931
1928
  }
@@ -1933,7 +1930,7 @@ yyreduce:
1933
1930
 
1934
1931
  case 7:
1935
1932
  /* Line 1792 of yacc.c */
1936
- #line 148 "src/Slice/Grammar.y"
1933
+ #line 147 "src/Slice/Grammar.y"
1937
1934
  {
1938
1935
  (yyval) = new StringListTok;
1939
1936
  }
@@ -1941,7 +1938,7 @@ yyreduce:
1941
1938
 
1942
1939
  case 8:
1943
1940
  /* Line 1792 of yacc.c */
1944
- #line 157 "src/Slice/Grammar.y"
1941
+ #line 156 "src/Slice/Grammar.y"
1945
1942
  {
1946
1943
  StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[(1) - (1)]));
1947
1944
  if(!metaData->v.empty())
@@ -1953,7 +1950,7 @@ yyreduce:
1953
1950
 
1954
1951
  case 10:
1955
1952
  /* Line 1792 of yacc.c */
1956
- #line 166 "src/Slice/Grammar.y"
1953
+ #line 165 "src/Slice/Grammar.y"
1957
1954
  {
1958
1955
  StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[(1) - (2)]));
1959
1956
  ContainedPtr contained = ContainedPtr::dynamicCast((yyvsp[(2) - (2)]));
@@ -1966,14 +1963,14 @@ yyreduce:
1966
1963
 
1967
1964
  case 12:
1968
1965
  /* Line 1792 of yacc.c */
1969
- #line 176 "src/Slice/Grammar.y"
1966
+ #line 175 "src/Slice/Grammar.y"
1970
1967
  {
1971
1968
  }
1972
1969
  break;
1973
1970
 
1974
1971
  case 13:
1975
1972
  /* Line 1792 of yacc.c */
1976
- #line 184 "src/Slice/Grammar.y"
1973
+ #line 183 "src/Slice/Grammar.y"
1977
1974
  {
1978
1975
  assert((yyvsp[(1) - (1)]) == 0 || ModulePtr::dynamicCast((yyvsp[(1) - (1)])));
1979
1976
  }
@@ -1981,7 +1978,7 @@ yyreduce:
1981
1978
 
1982
1979
  case 15:
1983
1980
  /* Line 1792 of yacc.c */
1984
- #line 189 "src/Slice/Grammar.y"
1981
+ #line 188 "src/Slice/Grammar.y"
1985
1982
  {
1986
1983
  assert((yyvsp[(1) - (1)]) == 0 || ClassDeclPtr::dynamicCast((yyvsp[(1) - (1)])));
1987
1984
  }
@@ -1989,7 +1986,7 @@ yyreduce:
1989
1986
 
1990
1987
  case 17:
1991
1988
  /* Line 1792 of yacc.c */
1992
- #line 194 "src/Slice/Grammar.y"
1989
+ #line 193 "src/Slice/Grammar.y"
1993
1990
  {
1994
1991
  unit->error("`;' missing after class forward declaration");
1995
1992
  }
@@ -1997,7 +1994,7 @@ yyreduce:
1997
1994
 
1998
1995
  case 18:
1999
1996
  /* Line 1792 of yacc.c */
2000
- #line 198 "src/Slice/Grammar.y"
1997
+ #line 197 "src/Slice/Grammar.y"
2001
1998
  {
2002
1999
  assert((yyvsp[(1) - (1)]) == 0 || ClassDefPtr::dynamicCast((yyvsp[(1) - (1)])));
2003
2000
  }
@@ -2005,7 +2002,7 @@ yyreduce:
2005
2002
 
2006
2003
  case 20:
2007
2004
  /* Line 1792 of yacc.c */
2008
- #line 203 "src/Slice/Grammar.y"
2005
+ #line 202 "src/Slice/Grammar.y"
2009
2006
  {
2010
2007
  assert((yyvsp[(1) - (1)]) == 0 || ClassDeclPtr::dynamicCast((yyvsp[(1) - (1)])));
2011
2008
  }
@@ -2013,7 +2010,7 @@ yyreduce:
2013
2010
 
2014
2011
  case 22:
2015
2012
  /* Line 1792 of yacc.c */
2016
- #line 208 "src/Slice/Grammar.y"
2013
+ #line 207 "src/Slice/Grammar.y"
2017
2014
  {
2018
2015
  unit->error("`;' missing after interface forward declaration");
2019
2016
  }
@@ -2021,7 +2018,7 @@ yyreduce:
2021
2018
 
2022
2019
  case 23:
2023
2020
  /* Line 1792 of yacc.c */
2024
- #line 212 "src/Slice/Grammar.y"
2021
+ #line 211 "src/Slice/Grammar.y"
2025
2022
  {
2026
2023
  assert((yyvsp[(1) - (1)]) == 0 || ClassDefPtr::dynamicCast((yyvsp[(1) - (1)])));
2027
2024
  }
@@ -2029,7 +2026,7 @@ yyreduce:
2029
2026
 
2030
2027
  case 25:
2031
2028
  /* Line 1792 of yacc.c */
2032
- #line 217 "src/Slice/Grammar.y"
2029
+ #line 216 "src/Slice/Grammar.y"
2033
2030
  {
2034
2031
  assert((yyvsp[(1) - (1)]) == 0);
2035
2032
  }
@@ -2037,7 +2034,7 @@ yyreduce:
2037
2034
 
2038
2035
  case 27:
2039
2036
  /* Line 1792 of yacc.c */
2040
- #line 222 "src/Slice/Grammar.y"
2037
+ #line 221 "src/Slice/Grammar.y"
2041
2038
  {
2042
2039
  unit->error("`;' missing after exception forward declaration");
2043
2040
  }
@@ -2045,7 +2042,7 @@ yyreduce:
2045
2042
 
2046
2043
  case 28:
2047
2044
  /* Line 1792 of yacc.c */
2048
- #line 226 "src/Slice/Grammar.y"
2045
+ #line 225 "src/Slice/Grammar.y"
2049
2046
  {
2050
2047
  assert((yyvsp[(1) - (1)]) == 0 || ExceptionPtr::dynamicCast((yyvsp[(1) - (1)])));
2051
2048
  }
@@ -2053,7 +2050,7 @@ yyreduce:
2053
2050
 
2054
2051
  case 30:
2055
2052
  /* Line 1792 of yacc.c */
2056
- #line 231 "src/Slice/Grammar.y"
2053
+ #line 230 "src/Slice/Grammar.y"
2057
2054
  {
2058
2055
  assert((yyvsp[(1) - (1)]) == 0);
2059
2056
  }
@@ -2061,7 +2058,7 @@ yyreduce:
2061
2058
 
2062
2059
  case 32:
2063
2060
  /* Line 1792 of yacc.c */
2064
- #line 236 "src/Slice/Grammar.y"
2061
+ #line 235 "src/Slice/Grammar.y"
2065
2062
  {
2066
2063
  unit->error("`;' missing after struct forward declaration");
2067
2064
  }
@@ -2069,7 +2066,7 @@ yyreduce:
2069
2066
 
2070
2067
  case 33:
2071
2068
  /* Line 1792 of yacc.c */
2072
- #line 240 "src/Slice/Grammar.y"
2069
+ #line 239 "src/Slice/Grammar.y"
2073
2070
  {
2074
2071
  assert((yyvsp[(1) - (1)]) == 0 || StructPtr::dynamicCast((yyvsp[(1) - (1)])));
2075
2072
  }
@@ -2077,7 +2074,7 @@ yyreduce:
2077
2074
 
2078
2075
  case 35:
2079
2076
  /* Line 1792 of yacc.c */
2080
- #line 245 "src/Slice/Grammar.y"
2077
+ #line 244 "src/Slice/Grammar.y"
2081
2078
  {
2082
2079
  assert((yyvsp[(1) - (1)]) == 0 || SequencePtr::dynamicCast((yyvsp[(1) - (1)])));
2083
2080
  }
@@ -2085,7 +2082,7 @@ yyreduce:
2085
2082
 
2086
2083
  case 37:
2087
2084
  /* Line 1792 of yacc.c */
2088
- #line 250 "src/Slice/Grammar.y"
2085
+ #line 249 "src/Slice/Grammar.y"
2089
2086
  {
2090
2087
  unit->error("`;' missing after sequence definition");
2091
2088
  }
@@ -2093,7 +2090,7 @@ yyreduce:
2093
2090
 
2094
2091
  case 38:
2095
2092
  /* Line 1792 of yacc.c */
2096
- #line 254 "src/Slice/Grammar.y"
2093
+ #line 253 "src/Slice/Grammar.y"
2097
2094
  {
2098
2095
  assert((yyvsp[(1) - (1)]) == 0 || DictionaryPtr::dynamicCast((yyvsp[(1) - (1)])));
2099
2096
  }
@@ -2101,7 +2098,7 @@ yyreduce:
2101
2098
 
2102
2099
  case 40:
2103
2100
  /* Line 1792 of yacc.c */
2104
- #line 259 "src/Slice/Grammar.y"
2101
+ #line 258 "src/Slice/Grammar.y"
2105
2102
  {
2106
2103
  unit->error("`;' missing after dictionary definition");
2107
2104
  }
@@ -2109,7 +2106,7 @@ yyreduce:
2109
2106
 
2110
2107
  case 41:
2111
2108
  /* Line 1792 of yacc.c */
2112
- #line 263 "src/Slice/Grammar.y"
2109
+ #line 262 "src/Slice/Grammar.y"
2113
2110
  {
2114
2111
  assert((yyvsp[(1) - (1)]) == 0 || EnumPtr::dynamicCast((yyvsp[(1) - (1)])));
2115
2112
  }
@@ -2117,7 +2114,7 @@ yyreduce:
2117
2114
 
2118
2115
  case 43:
2119
2116
  /* Line 1792 of yacc.c */
2120
- #line 268 "src/Slice/Grammar.y"
2117
+ #line 267 "src/Slice/Grammar.y"
2121
2118
  {
2122
2119
  assert((yyvsp[(1) - (1)]) == 0 || ConstPtr::dynamicCast((yyvsp[(1) - (1)])));
2123
2120
  }
@@ -2125,7 +2122,7 @@ yyreduce:
2125
2122
 
2126
2123
  case 45:
2127
2124
  /* Line 1792 of yacc.c */
2128
- #line 273 "src/Slice/Grammar.y"
2125
+ #line 272 "src/Slice/Grammar.y"
2129
2126
  {
2130
2127
  unit->error("`;' missing after const definition");
2131
2128
  }
@@ -2133,7 +2130,7 @@ yyreduce:
2133
2130
 
2134
2131
  case 46:
2135
2132
  /* Line 1792 of yacc.c */
2136
- #line 277 "src/Slice/Grammar.y"
2133
+ #line 276 "src/Slice/Grammar.y"
2137
2134
  {
2138
2135
  yyerrok;
2139
2136
  }
@@ -2141,7 +2138,7 @@ yyreduce:
2141
2138
 
2142
2139
  case 47:
2143
2140
  /* Line 1792 of yacc.c */
2144
- #line 286 "src/Slice/Grammar.y"
2141
+ #line 285 "src/Slice/Grammar.y"
2145
2142
  {
2146
2143
  unit->setSeenDefinition();
2147
2144
  StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
@@ -2162,7 +2159,7 @@ yyreduce:
2162
2159
 
2163
2160
  case 48:
2164
2161
  /* Line 1792 of yacc.c */
2165
- #line 303 "src/Slice/Grammar.y"
2162
+ #line 302 "src/Slice/Grammar.y"
2166
2163
  {
2167
2164
  if((yyvsp[(3) - (6)]))
2168
2165
  {
@@ -2178,7 +2175,7 @@ yyreduce:
2178
2175
 
2179
2176
  case 49:
2180
2177
  /* Line 1792 of yacc.c */
2181
- #line 320 "src/Slice/Grammar.y"
2178
+ #line 319 "src/Slice/Grammar.y"
2182
2179
  {
2183
2180
  (yyval) = (yyvsp[(2) - (2)]);
2184
2181
  }
@@ -2186,7 +2183,7 @@ yyreduce:
2186
2183
 
2187
2184
  case 50:
2188
2185
  /* Line 1792 of yacc.c */
2189
- #line 324 "src/Slice/Grammar.y"
2186
+ #line 323 "src/Slice/Grammar.y"
2190
2187
  {
2191
2188
  StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
2192
2189
  unit->error("keyword `" + ident->v + "' cannot be used as exception name");
@@ -2196,7 +2193,7 @@ yyreduce:
2196
2193
 
2197
2194
  case 51:
2198
2195
  /* Line 1792 of yacc.c */
2199
- #line 335 "src/Slice/Grammar.y"
2196
+ #line 334 "src/Slice/Grammar.y"
2200
2197
  {
2201
2198
  unit->error("exceptions cannot be forward declared");
2202
2199
  (yyval) = 0;
@@ -2205,7 +2202,7 @@ yyreduce:
2205
2202
 
2206
2203
  case 52:
2207
2204
  /* Line 1792 of yacc.c */
2208
- #line 345 "src/Slice/Grammar.y"
2205
+ #line 344 "src/Slice/Grammar.y"
2209
2206
  {
2210
2207
  BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (3)]));
2211
2208
  StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (3)]));
@@ -2223,7 +2220,7 @@ yyreduce:
2223
2220
 
2224
2221
  case 53:
2225
2222
  /* Line 1792 of yacc.c */
2226
- #line 359 "src/Slice/Grammar.y"
2223
+ #line 358 "src/Slice/Grammar.y"
2227
2224
  {
2228
2225
  if((yyvsp[(4) - (7)]))
2229
2226
  {
@@ -2235,7 +2232,7 @@ yyreduce:
2235
2232
 
2236
2233
  case 54:
2237
2234
  /* Line 1792 of yacc.c */
2238
- #line 372 "src/Slice/Grammar.y"
2235
+ #line 371 "src/Slice/Grammar.y"
2239
2236
  {
2240
2237
  StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
2241
2238
  ContainerPtr cont = unit->currentContainer();
@@ -2247,7 +2244,7 @@ yyreduce:
2247
2244
 
2248
2245
  case 55:
2249
2246
  /* Line 1792 of yacc.c */
2250
- #line 380 "src/Slice/Grammar.y"
2247
+ #line 379 "src/Slice/Grammar.y"
2251
2248
  {
2252
2249
  (yyval) = 0;
2253
2250
  }
@@ -2255,7 +2252,7 @@ yyreduce:
2255
2252
 
2256
2253
  case 56:
2257
2254
  /* Line 1792 of yacc.c */
2258
- #line 389 "src/Slice/Grammar.y"
2255
+ #line 388 "src/Slice/Grammar.y"
2259
2256
  {
2260
2257
  StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[(1) - (4)]));
2261
2258
  ContainedPtr contained = ContainedPtr::dynamicCast((yyvsp[(2) - (4)]));
@@ -2268,14 +2265,14 @@ yyreduce:
2268
2265
 
2269
2266
  case 57:
2270
2267
  /* Line 1792 of yacc.c */
2271
- #line 398 "src/Slice/Grammar.y"
2268
+ #line 397 "src/Slice/Grammar.y"
2272
2269
  {
2273
2270
  }
2274
2271
  break;
2275
2272
 
2276
2273
  case 58:
2277
2274
  /* Line 1792 of yacc.c */
2278
- #line 401 "src/Slice/Grammar.y"
2275
+ #line 400 "src/Slice/Grammar.y"
2279
2276
  {
2280
2277
  unit->error("`;' missing after definition");
2281
2278
  }
@@ -2283,14 +2280,14 @@ yyreduce:
2283
2280
 
2284
2281
  case 59:
2285
2282
  /* Line 1792 of yacc.c */
2286
- #line 405 "src/Slice/Grammar.y"
2283
+ #line 404 "src/Slice/Grammar.y"
2287
2284
  {
2288
2285
  }
2289
2286
  break;
2290
2287
 
2291
2288
  case 60:
2292
2289
  /* Line 1792 of yacc.c */
2293
- #line 413 "src/Slice/Grammar.y"
2290
+ #line 412 "src/Slice/Grammar.y"
2294
2291
  {
2295
2292
  TypePtr type = TypePtr::dynamicCast((yyvsp[(1) - (2)]));
2296
2293
  StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
@@ -2302,7 +2299,7 @@ yyreduce:
2302
2299
 
2303
2300
  case 61:
2304
2301
  /* Line 1792 of yacc.c */
2305
- #line 426 "src/Slice/Grammar.y"
2302
+ #line 425 "src/Slice/Grammar.y"
2306
2303
  {
2307
2304
  IntegerTokPtr i = IntegerTokPtr::dynamicCast((yyvsp[(2) - (3)]));
2308
2305
 
@@ -2326,7 +2323,7 @@ yyreduce:
2326
2323
 
2327
2324
  case 62:
2328
2325
  /* Line 1792 of yacc.c */
2329
- #line 446 "src/Slice/Grammar.y"
2326
+ #line 445 "src/Slice/Grammar.y"
2330
2327
  {
2331
2328
  StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(2) - (3)]));
2332
2329
 
@@ -2423,7 +2420,7 @@ yyreduce:
2423
2420
 
2424
2421
  case 63:
2425
2422
  /* Line 1792 of yacc.c */
2426
- #line 539 "src/Slice/Grammar.y"
2423
+ #line 538 "src/Slice/Grammar.y"
2427
2424
  {
2428
2425
  unit->error("missing tag for optional");
2429
2426
  OptionalDefTokPtr m = new OptionalDefTok; // Dummy
@@ -2435,7 +2432,7 @@ yyreduce:
2435
2432
 
2436
2433
  case 64:
2437
2434
  /* Line 1792 of yacc.c */
2438
- #line 547 "src/Slice/Grammar.y"
2435
+ #line 546 "src/Slice/Grammar.y"
2439
2436
  {
2440
2437
  unit->error("missing tag for optional");
2441
2438
  OptionalDefTokPtr m = new OptionalDefTok; // Dummy
@@ -2447,7 +2444,7 @@ yyreduce:
2447
2444
 
2448
2445
  case 65:
2449
2446
  /* Line 1792 of yacc.c */
2450
- #line 560 "src/Slice/Grammar.y"
2447
+ #line 559 "src/Slice/Grammar.y"
2451
2448
  {
2452
2449
  OptionalDefTokPtr m = OptionalDefTokPtr::dynamicCast((yyvsp[(1) - (2)]));
2453
2450
  TypeStringTokPtr ts = TypeStringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
@@ -2459,7 +2456,7 @@ yyreduce:
2459
2456
 
2460
2457
  case 66:
2461
2458
  /* Line 1792 of yacc.c */
2462
- #line 568 "src/Slice/Grammar.y"
2459
+ #line 567 "src/Slice/Grammar.y"
2463
2460
  {
2464
2461
  TypeStringTokPtr ts = TypeStringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
2465
2462
  OptionalDefTokPtr m = new OptionalDefTok;
@@ -2473,7 +2470,7 @@ yyreduce:
2473
2470
 
2474
2471
  case 68:
2475
2472
  /* Line 1792 of yacc.c */
2476
- #line 589 "src/Slice/Grammar.y"
2473
+ #line 588 "src/Slice/Grammar.y"
2477
2474
  {
2478
2475
  (yyval) = (yyvsp[(2) - (2)]);
2479
2476
  }
@@ -2481,7 +2478,7 @@ yyreduce:
2481
2478
 
2482
2479
  case 69:
2483
2480
  /* Line 1792 of yacc.c */
2484
- #line 593 "src/Slice/Grammar.y"
2481
+ #line 592 "src/Slice/Grammar.y"
2485
2482
  {
2486
2483
  StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
2487
2484
  unit->error("keyword `" + ident->v + "' cannot be used as struct name");
@@ -2491,7 +2488,7 @@ yyreduce:
2491
2488
 
2492
2489
  case 70:
2493
2490
  /* Line 1792 of yacc.c */
2494
- #line 604 "src/Slice/Grammar.y"
2491
+ #line 603 "src/Slice/Grammar.y"
2495
2492
  {
2496
2493
  unit->error("structs cannot be forward declared");
2497
2494
  (yyval) = 0; // Dummy
@@ -2500,7 +2497,7 @@ yyreduce:
2500
2497
 
2501
2498
  case 71:
2502
2499
  /* Line 1792 of yacc.c */
2503
- #line 614 "src/Slice/Grammar.y"
2500
+ #line 613 "src/Slice/Grammar.y"
2504
2501
  {
2505
2502
  BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (2)]));
2506
2503
  StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
@@ -2523,7 +2520,7 @@ yyreduce:
2523
2520
 
2524
2521
  case 72:
2525
2522
  /* Line 1792 of yacc.c */
2526
- #line 633 "src/Slice/Grammar.y"
2523
+ #line 632 "src/Slice/Grammar.y"
2527
2524
  {
2528
2525
  if((yyvsp[(3) - (6)]))
2529
2526
  {
@@ -2545,7 +2542,7 @@ yyreduce:
2545
2542
 
2546
2543
  case 73:
2547
2544
  /* Line 1792 of yacc.c */
2548
- #line 656 "src/Slice/Grammar.y"
2545
+ #line 655 "src/Slice/Grammar.y"
2549
2546
  {
2550
2547
  StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[(1) - (4)]));
2551
2548
  ContainedPtr contained = ContainedPtr::dynamicCast((yyvsp[(2) - (4)]));
@@ -2558,14 +2555,14 @@ yyreduce:
2558
2555
 
2559
2556
  case 74:
2560
2557
  /* Line 1792 of yacc.c */
2561
- #line 665 "src/Slice/Grammar.y"
2558
+ #line 664 "src/Slice/Grammar.y"
2562
2559
  {
2563
2560
  }
2564
2561
  break;
2565
2562
 
2566
2563
  case 75:
2567
2564
  /* Line 1792 of yacc.c */
2568
- #line 668 "src/Slice/Grammar.y"
2565
+ #line 667 "src/Slice/Grammar.y"
2569
2566
  {
2570
2567
  unit->error("`;' missing after definition");
2571
2568
  }
@@ -2573,14 +2570,14 @@ yyreduce:
2573
2570
 
2574
2571
  case 76:
2575
2572
  /* Line 1792 of yacc.c */
2576
- #line 672 "src/Slice/Grammar.y"
2573
+ #line 671 "src/Slice/Grammar.y"
2577
2574
  {
2578
2575
  }
2579
2576
  break;
2580
2577
 
2581
2578
  case 78:
2582
2579
  /* Line 1792 of yacc.c */
2583
- #line 686 "src/Slice/Grammar.y"
2580
+ #line 685 "src/Slice/Grammar.y"
2584
2581
  {
2585
2582
  (yyval) = (yyvsp[(2) - (2)]);
2586
2583
  }
@@ -2588,7 +2585,7 @@ yyreduce:
2588
2585
 
2589
2586
  case 79:
2590
2587
  /* Line 1792 of yacc.c */
2591
- #line 690 "src/Slice/Grammar.y"
2588
+ #line 689 "src/Slice/Grammar.y"
2592
2589
  {
2593
2590
  StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
2594
2591
  unit->error("keyword `" + ident->v + "' cannot be used as class name");
@@ -2598,7 +2595,7 @@ yyreduce:
2598
2595
 
2599
2596
  case 80:
2600
2597
  /* Line 1792 of yacc.c */
2601
- #line 701 "src/Slice/Grammar.y"
2598
+ #line 700 "src/Slice/Grammar.y"
2602
2599
  {
2603
2600
  IceUtil::Int64 id = IntegerTokPtr::dynamicCast((yyvsp[(3) - (4)]))->v;
2604
2601
  if(id < 0)
@@ -2627,7 +2624,7 @@ yyreduce:
2627
2624
 
2628
2625
  case 81:
2629
2626
  /* Line 1792 of yacc.c */
2630
- #line 726 "src/Slice/Grammar.y"
2627
+ #line 725 "src/Slice/Grammar.y"
2631
2628
  {
2632
2629
  StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(3) - (4)]));
2633
2630
 
@@ -2733,7 +2730,7 @@ yyreduce:
2733
2730
 
2734
2731
  case 82:
2735
2732
  /* Line 1792 of yacc.c */
2736
- #line 828 "src/Slice/Grammar.y"
2733
+ #line 827 "src/Slice/Grammar.y"
2737
2734
  {
2738
2735
  ClassIdTokPtr classId = new ClassIdTok();
2739
2736
  classId->v = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]))->v;
@@ -2744,7 +2741,7 @@ yyreduce:
2744
2741
 
2745
2742
  case 83:
2746
2743
  /* Line 1792 of yacc.c */
2747
- #line 840 "src/Slice/Grammar.y"
2744
+ #line 839 "src/Slice/Grammar.y"
2748
2745
  {
2749
2746
  BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (2)]));
2750
2747
  StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
@@ -2756,7 +2753,7 @@ yyreduce:
2756
2753
 
2757
2754
  case 84:
2758
2755
  /* Line 1792 of yacc.c */
2759
- #line 853 "src/Slice/Grammar.y"
2756
+ #line 852 "src/Slice/Grammar.y"
2760
2757
  {
2761
2758
  BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (4)]));
2762
2759
  ClassIdTokPtr ident = ClassIdTokPtr::dynamicCast((yyvsp[(2) - (4)]));
@@ -2783,7 +2780,7 @@ yyreduce:
2783
2780
 
2784
2781
  case 85:
2785
2782
  /* Line 1792 of yacc.c */
2786
- #line 876 "src/Slice/Grammar.y"
2783
+ #line 875 "src/Slice/Grammar.y"
2787
2784
  {
2788
2785
  if((yyvsp[(5) - (8)]))
2789
2786
  {
@@ -2799,7 +2796,7 @@ yyreduce:
2799
2796
 
2800
2797
  case 86:
2801
2798
  /* Line 1792 of yacc.c */
2802
- #line 893 "src/Slice/Grammar.y"
2799
+ #line 892 "src/Slice/Grammar.y"
2803
2800
  {
2804
2801
  StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
2805
2802
  ContainerPtr cont = unit->currentContainer();
@@ -2837,7 +2834,7 @@ yyreduce:
2837
2834
 
2838
2835
  case 87:
2839
2836
  /* Line 1792 of yacc.c */
2840
- #line 927 "src/Slice/Grammar.y"
2837
+ #line 926 "src/Slice/Grammar.y"
2841
2838
  {
2842
2839
  (yyval) = 0;
2843
2840
  }
@@ -2845,7 +2842,7 @@ yyreduce:
2845
2842
 
2846
2843
  case 88:
2847
2844
  /* Line 1792 of yacc.c */
2848
- #line 936 "src/Slice/Grammar.y"
2845
+ #line 935 "src/Slice/Grammar.y"
2849
2846
  {
2850
2847
  (yyval) = (yyvsp[(2) - (2)]);
2851
2848
  }
@@ -2853,7 +2850,7 @@ yyreduce:
2853
2850
 
2854
2851
  case 89:
2855
2852
  /* Line 1792 of yacc.c */
2856
- #line 940 "src/Slice/Grammar.y"
2853
+ #line 939 "src/Slice/Grammar.y"
2857
2854
  {
2858
2855
  (yyval) = new ClassListTok;
2859
2856
  }
@@ -2861,7 +2858,7 @@ yyreduce:
2861
2858
 
2862
2859
  case 90:
2863
2860
  /* Line 1792 of yacc.c */
2864
- #line 949 "src/Slice/Grammar.y"
2861
+ #line 948 "src/Slice/Grammar.y"
2865
2862
  {
2866
2863
  StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[(1) - (4)]));
2867
2864
  ContainedPtr contained = ContainedPtr::dynamicCast((yyvsp[(2) - (4)]));
@@ -2874,14 +2871,14 @@ yyreduce:
2874
2871
 
2875
2872
  case 91:
2876
2873
  /* Line 1792 of yacc.c */
2877
- #line 958 "src/Slice/Grammar.y"
2874
+ #line 957 "src/Slice/Grammar.y"
2878
2875
  {
2879
2876
  }
2880
2877
  break;
2881
2878
 
2882
2879
  case 92:
2883
2880
  /* Line 1792 of yacc.c */
2884
- #line 961 "src/Slice/Grammar.y"
2881
+ #line 960 "src/Slice/Grammar.y"
2885
2882
  {
2886
2883
  unit->error("`;' missing after definition");
2887
2884
  }
@@ -2889,14 +2886,14 @@ yyreduce:
2889
2886
 
2890
2887
  case 93:
2891
2888
  /* Line 1792 of yacc.c */
2892
- #line 965 "src/Slice/Grammar.y"
2889
+ #line 964 "src/Slice/Grammar.y"
2893
2890
  {
2894
2891
  }
2895
2892
  break;
2896
2893
 
2897
2894
  case 94:
2898
2895
  /* Line 1792 of yacc.c */
2899
- #line 973 "src/Slice/Grammar.y"
2896
+ #line 972 "src/Slice/Grammar.y"
2900
2897
  {
2901
2898
  OptionalDefTokPtr def = OptionalDefTokPtr::dynamicCast((yyvsp[(1) - (1)]));
2902
2899
  ClassDefPtr cl = ClassDefPtr::dynamicCast(unit->currentContainer());
@@ -2922,7 +2919,7 @@ yyreduce:
2922
2919
 
2923
2920
  case 95:
2924
2921
  /* Line 1792 of yacc.c */
2925
- #line 995 "src/Slice/Grammar.y"
2922
+ #line 994 "src/Slice/Grammar.y"
2926
2923
  {
2927
2924
  OptionalDefTokPtr def = OptionalDefTokPtr::dynamicCast((yyvsp[(1) - (3)]));
2928
2925
  ConstDefTokPtr value = ConstDefTokPtr::dynamicCast((yyvsp[(3) - (3)]));
@@ -2953,7 +2950,7 @@ yyreduce:
2953
2950
 
2954
2951
  case 96:
2955
2952
  /* Line 1792 of yacc.c */
2956
- #line 1022 "src/Slice/Grammar.y"
2953
+ #line 1021 "src/Slice/Grammar.y"
2957
2954
  {
2958
2955
  TypePtr type = TypePtr::dynamicCast((yyvsp[(1) - (2)]));
2959
2956
  string name = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]))->v;
@@ -2979,7 +2976,7 @@ yyreduce:
2979
2976
 
2980
2977
  case 97:
2981
2978
  /* Line 1792 of yacc.c */
2982
- #line 1044 "src/Slice/Grammar.y"
2979
+ #line 1043 "src/Slice/Grammar.y"
2983
2980
  {
2984
2981
  TypePtr type = TypePtr::dynamicCast((yyvsp[(1) - (1)]));
2985
2982
  ClassDefPtr cl = ClassDefPtr::dynamicCast(unit->currentContainer());
@@ -3004,7 +3001,7 @@ yyreduce:
3004
3001
 
3005
3002
  case 98:
3006
3003
  /* Line 1792 of yacc.c */
3007
- #line 1070 "src/Slice/Grammar.y"
3004
+ #line 1069 "src/Slice/Grammar.y"
3008
3005
  {
3009
3006
  TypeStringTokPtr ts = TypeStringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
3010
3007
  StructPtr st = StructPtr::dynamicCast(unit->currentContainer());
@@ -3017,7 +3014,7 @@ yyreduce:
3017
3014
 
3018
3015
  case 99:
3019
3016
  /* Line 1792 of yacc.c */
3020
- #line 1079 "src/Slice/Grammar.y"
3017
+ #line 1078 "src/Slice/Grammar.y"
3021
3018
  {
3022
3019
  TypeStringTokPtr ts = TypeStringTokPtr::dynamicCast((yyvsp[(1) - (3)]));
3023
3020
  ConstDefTokPtr value = ConstDefTokPtr::dynamicCast((yyvsp[(3) - (3)]));
@@ -3032,7 +3029,7 @@ yyreduce:
3032
3029
 
3033
3030
  case 100:
3034
3031
  /* Line 1792 of yacc.c */
3035
- #line 1090 "src/Slice/Grammar.y"
3032
+ #line 1089 "src/Slice/Grammar.y"
3036
3033
  {
3037
3034
  TypeStringTokPtr ts = TypeStringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
3038
3035
  StructPtr st = StructPtr::dynamicCast(unit->currentContainer());
@@ -3045,7 +3042,7 @@ yyreduce:
3045
3042
 
3046
3043
  case 101:
3047
3044
  /* Line 1792 of yacc.c */
3048
- #line 1099 "src/Slice/Grammar.y"
3045
+ #line 1098 "src/Slice/Grammar.y"
3049
3046
  {
3050
3047
  TypeStringTokPtr ts = TypeStringTokPtr::dynamicCast((yyvsp[(2) - (4)]));
3051
3048
  StructPtr st = StructPtr::dynamicCast(unit->currentContainer());
@@ -3058,7 +3055,7 @@ yyreduce:
3058
3055
 
3059
3056
  case 102:
3060
3057
  /* Line 1792 of yacc.c */
3061
- #line 1108 "src/Slice/Grammar.y"
3058
+ #line 1107 "src/Slice/Grammar.y"
3062
3059
  {
3063
3060
  TypePtr type = TypePtr::dynamicCast((yyvsp[(1) - (2)]));
3064
3061
  string name = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]))->v;
@@ -3072,7 +3069,7 @@ yyreduce:
3072
3069
 
3073
3070
  case 103:
3074
3071
  /* Line 1792 of yacc.c */
3075
- #line 1118 "src/Slice/Grammar.y"
3072
+ #line 1117 "src/Slice/Grammar.y"
3076
3073
  {
3077
3074
  TypePtr type = TypePtr::dynamicCast((yyvsp[(1) - (1)]));
3078
3075
  StructPtr st = StructPtr::dynamicCast(unit->currentContainer());
@@ -3085,7 +3082,7 @@ yyreduce:
3085
3082
 
3086
3083
  case 104:
3087
3084
  /* Line 1792 of yacc.c */
3088
- #line 1132 "src/Slice/Grammar.y"
3085
+ #line 1131 "src/Slice/Grammar.y"
3089
3086
  {
3090
3087
  OptionalDefTokPtr m = OptionalDefTokPtr::dynamicCast((yyvsp[(1) - (2)]));
3091
3088
  m->v.type = TypePtr::dynamicCast((yyvsp[(2) - (2)]));
@@ -3095,7 +3092,7 @@ yyreduce:
3095
3092
 
3096
3093
  case 105:
3097
3094
  /* Line 1792 of yacc.c */
3098
- #line 1138 "src/Slice/Grammar.y"
3095
+ #line 1137 "src/Slice/Grammar.y"
3099
3096
  {
3100
3097
  OptionalDefTokPtr m = new OptionalDefTok();
3101
3098
  m->v.type = TypePtr::dynamicCast((yyvsp[(1) - (1)]));
@@ -3107,7 +3104,7 @@ yyreduce:
3107
3104
 
3108
3105
  case 106:
3109
3106
  /* Line 1792 of yacc.c */
3110
- #line 1146 "src/Slice/Grammar.y"
3107
+ #line 1145 "src/Slice/Grammar.y"
3111
3108
  {
3112
3109
  OptionalDefTokPtr m = new OptionalDefTok;
3113
3110
  m->v.optional = false;
@@ -3118,7 +3115,7 @@ yyreduce:
3118
3115
 
3119
3116
  case 107:
3120
3117
  /* Line 1792 of yacc.c */
3121
- #line 1158 "src/Slice/Grammar.y"
3118
+ #line 1157 "src/Slice/Grammar.y"
3122
3119
  {
3123
3120
  OptionalDefTokPtr returnType = OptionalDefTokPtr::dynamicCast((yyvsp[(1) - (2)]));
3124
3121
  string name = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]))->v;
@@ -3146,7 +3143,7 @@ yyreduce:
3146
3143
 
3147
3144
  case 108:
3148
3145
  /* Line 1792 of yacc.c */
3149
- #line 1182 "src/Slice/Grammar.y"
3146
+ #line 1181 "src/Slice/Grammar.y"
3150
3147
  {
3151
3148
  OptionalDefTokPtr returnType = OptionalDefTokPtr::dynamicCast((yyvsp[(2) - (3)]));
3152
3149
  string name = StringTokPtr::dynamicCast((yyvsp[(3) - (3)]))->v;
@@ -3175,7 +3172,7 @@ yyreduce:
3175
3172
 
3176
3173
  case 109:
3177
3174
  /* Line 1792 of yacc.c */
3178
- #line 1207 "src/Slice/Grammar.y"
3175
+ #line 1206 "src/Slice/Grammar.y"
3179
3176
  {
3180
3177
  OptionalDefTokPtr returnType = OptionalDefTokPtr::dynamicCast((yyvsp[(1) - (2)]));
3181
3178
  string name = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]))->v;
@@ -3203,7 +3200,7 @@ yyreduce:
3203
3200
 
3204
3201
  case 110:
3205
3202
  /* Line 1792 of yacc.c */
3206
- #line 1231 "src/Slice/Grammar.y"
3203
+ #line 1230 "src/Slice/Grammar.y"
3207
3204
  {
3208
3205
  OptionalDefTokPtr returnType = OptionalDefTokPtr::dynamicCast((yyvsp[(2) - (3)]));
3209
3206
  string name = StringTokPtr::dynamicCast((yyvsp[(3) - (3)]))->v;
@@ -3232,7 +3229,7 @@ yyreduce:
3232
3229
 
3233
3230
  case 111:
3234
3231
  /* Line 1792 of yacc.c */
3235
- #line 1261 "src/Slice/Grammar.y"
3232
+ #line 1260 "src/Slice/Grammar.y"
3236
3233
  {
3237
3234
  if((yyvsp[(1) - (3)]))
3238
3235
  {
@@ -3248,7 +3245,7 @@ yyreduce:
3248
3245
 
3249
3246
  case 112:
3250
3247
  /* Line 1792 of yacc.c */
3251
- #line 1273 "src/Slice/Grammar.y"
3248
+ #line 1272 "src/Slice/Grammar.y"
3252
3249
  {
3253
3250
  OperationPtr op = OperationPtr::dynamicCast((yyvsp[(4) - (5)]));
3254
3251
  ExceptionListTokPtr el = ExceptionListTokPtr::dynamicCast((yyvsp[(5) - (5)]));
@@ -3262,7 +3259,7 @@ yyreduce:
3262
3259
 
3263
3260
  case 113:
3264
3261
  /* Line 1792 of yacc.c */
3265
- #line 1283 "src/Slice/Grammar.y"
3262
+ #line 1282 "src/Slice/Grammar.y"
3266
3263
  {
3267
3264
  if((yyvsp[(1) - (3)]))
3268
3265
  {
@@ -3274,7 +3271,7 @@ yyreduce:
3274
3271
 
3275
3272
  case 114:
3276
3273
  /* Line 1792 of yacc.c */
3277
- #line 1291 "src/Slice/Grammar.y"
3274
+ #line 1290 "src/Slice/Grammar.y"
3278
3275
  {
3279
3276
  OperationPtr op = OperationPtr::dynamicCast((yyvsp[(4) - (5)]));
3280
3277
  ExceptionListTokPtr el = ExceptionListTokPtr::dynamicCast((yyvsp[(5) - (5)]));
@@ -3288,7 +3285,7 @@ yyreduce:
3288
3285
 
3289
3286
  case 117:
3290
3287
  /* Line 1792 of yacc.c */
3291
- #line 1313 "src/Slice/Grammar.y"
3288
+ #line 1312 "src/Slice/Grammar.y"
3292
3289
  {
3293
3290
  (yyval) = (yyvsp[(2) - (2)]);
3294
3291
  }
@@ -3296,7 +3293,7 @@ yyreduce:
3296
3293
 
3297
3294
  case 118:
3298
3295
  /* Line 1792 of yacc.c */
3299
- #line 1317 "src/Slice/Grammar.y"
3296
+ #line 1316 "src/Slice/Grammar.y"
3300
3297
  {
3301
3298
  StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
3302
3299
  unit->error("keyword `" + ident->v + "' cannot be used as interface name");
@@ -3306,7 +3303,7 @@ yyreduce:
3306
3303
 
3307
3304
  case 119:
3308
3305
  /* Line 1792 of yacc.c */
3309
- #line 1328 "src/Slice/Grammar.y"
3306
+ #line 1327 "src/Slice/Grammar.y"
3310
3307
  {
3311
3308
  BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (2)]));
3312
3309
  StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
@@ -3319,7 +3316,7 @@ yyreduce:
3319
3316
 
3320
3317
  case 120:
3321
3318
  /* Line 1792 of yacc.c */
3322
- #line 1342 "src/Slice/Grammar.y"
3319
+ #line 1341 "src/Slice/Grammar.y"
3323
3320
  {
3324
3321
  BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (3)]));
3325
3322
  StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (3)]));
@@ -3341,7 +3338,7 @@ yyreduce:
3341
3338
 
3342
3339
  case 121:
3343
3340
  /* Line 1792 of yacc.c */
3344
- #line 1360 "src/Slice/Grammar.y"
3341
+ #line 1359 "src/Slice/Grammar.y"
3345
3342
  {
3346
3343
  if((yyvsp[(4) - (7)]))
3347
3344
  {
@@ -3357,7 +3354,7 @@ yyreduce:
3357
3354
 
3358
3355
  case 122:
3359
3356
  /* Line 1792 of yacc.c */
3360
- #line 1377 "src/Slice/Grammar.y"
3357
+ #line 1376 "src/Slice/Grammar.y"
3361
3358
  {
3362
3359
  ClassListTokPtr intfs = ClassListTokPtr::dynamicCast((yyvsp[(3) - (3)]));
3363
3360
  StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(1) - (3)]));
@@ -3396,7 +3393,7 @@ yyreduce:
3396
3393
 
3397
3394
  case 123:
3398
3395
  /* Line 1792 of yacc.c */
3399
- #line 1412 "src/Slice/Grammar.y"
3396
+ #line 1411 "src/Slice/Grammar.y"
3400
3397
  {
3401
3398
  ClassListTokPtr intfs = new ClassListTok;
3402
3399
  StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
@@ -3435,7 +3432,7 @@ yyreduce:
3435
3432
 
3436
3433
  case 124:
3437
3434
  /* Line 1792 of yacc.c */
3438
- #line 1447 "src/Slice/Grammar.y"
3435
+ #line 1446 "src/Slice/Grammar.y"
3439
3436
  {
3440
3437
  unit->error("illegal inheritance from type Object");
3441
3438
  (yyval) = new ClassListTok; // Dummy
@@ -3444,7 +3441,7 @@ yyreduce:
3444
3441
 
3445
3442
  case 125:
3446
3443
  /* Line 1792 of yacc.c */
3447
- #line 1452 "src/Slice/Grammar.y"
3444
+ #line 1451 "src/Slice/Grammar.y"
3448
3445
  {
3449
3446
  unit->error("illegal inheritance from type Value");
3450
3447
  (yyval) = new ClassListTok; // Dummy
@@ -3453,7 +3450,7 @@ yyreduce:
3453
3450
 
3454
3451
  case 126:
3455
3452
  /* Line 1792 of yacc.c */
3456
- #line 1462 "src/Slice/Grammar.y"
3453
+ #line 1461 "src/Slice/Grammar.y"
3457
3454
  {
3458
3455
  (yyval) = (yyvsp[(2) - (2)]);
3459
3456
  }
@@ -3461,7 +3458,7 @@ yyreduce:
3461
3458
 
3462
3459
  case 127:
3463
3460
  /* Line 1792 of yacc.c */
3464
- #line 1466 "src/Slice/Grammar.y"
3461
+ #line 1465 "src/Slice/Grammar.y"
3465
3462
  {
3466
3463
  (yyval) = new ClassListTok;
3467
3464
  }
@@ -3469,7 +3466,7 @@ yyreduce:
3469
3466
 
3470
3467
  case 128:
3471
3468
  /* Line 1792 of yacc.c */
3472
- #line 1475 "src/Slice/Grammar.y"
3469
+ #line 1474 "src/Slice/Grammar.y"
3473
3470
  {
3474
3471
  StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[(1) - (4)]));
3475
3472
  ContainedPtr contained = ContainedPtr::dynamicCast((yyvsp[(2) - (4)]));
@@ -3482,14 +3479,14 @@ yyreduce:
3482
3479
 
3483
3480
  case 129:
3484
3481
  /* Line 1792 of yacc.c */
3485
- #line 1484 "src/Slice/Grammar.y"
3482
+ #line 1483 "src/Slice/Grammar.y"
3486
3483
  {
3487
3484
  }
3488
3485
  break;
3489
3486
 
3490
3487
  case 130:
3491
3488
  /* Line 1792 of yacc.c */
3492
- #line 1487 "src/Slice/Grammar.y"
3489
+ #line 1486 "src/Slice/Grammar.y"
3493
3490
  {
3494
3491
  unit->error("`;' missing after definition");
3495
3492
  }
@@ -3497,14 +3494,14 @@ yyreduce:
3497
3494
 
3498
3495
  case 131:
3499
3496
  /* Line 1792 of yacc.c */
3500
- #line 1491 "src/Slice/Grammar.y"
3497
+ #line 1490 "src/Slice/Grammar.y"
3501
3498
  {
3502
3499
  }
3503
3500
  break;
3504
3501
 
3505
3502
  case 133:
3506
3503
  /* Line 1792 of yacc.c */
3507
- #line 1505 "src/Slice/Grammar.y"
3504
+ #line 1504 "src/Slice/Grammar.y"
3508
3505
  {
3509
3506
  ExceptionPtr exception = ExceptionPtr::dynamicCast((yyvsp[(1) - (3)]));
3510
3507
  ExceptionListTokPtr exceptionList = ExceptionListTokPtr::dynamicCast((yyvsp[(3) - (3)]));
@@ -3515,7 +3512,7 @@ yyreduce:
3515
3512
 
3516
3513
  case 134:
3517
3514
  /* Line 1792 of yacc.c */
3518
- #line 1512 "src/Slice/Grammar.y"
3515
+ #line 1511 "src/Slice/Grammar.y"
3519
3516
  {
3520
3517
  ExceptionPtr exception = ExceptionPtr::dynamicCast((yyvsp[(1) - (1)]));
3521
3518
  ExceptionListTokPtr exceptionList = new ExceptionListTok;
@@ -3526,7 +3523,7 @@ yyreduce:
3526
3523
 
3527
3524
  case 135:
3528
3525
  /* Line 1792 of yacc.c */
3529
- #line 1524 "src/Slice/Grammar.y"
3526
+ #line 1523 "src/Slice/Grammar.y"
3530
3527
  {
3531
3528
  StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
3532
3529
  ContainerPtr cont = unit->currentContainer();
@@ -3542,7 +3539,7 @@ yyreduce:
3542
3539
 
3543
3540
  case 136:
3544
3541
  /* Line 1792 of yacc.c */
3545
- #line 1536 "src/Slice/Grammar.y"
3542
+ #line 1535 "src/Slice/Grammar.y"
3546
3543
  {
3547
3544
  StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
3548
3545
  unit->error("keyword `" + ident->v + "' cannot be used as exception name");
@@ -3552,7 +3549,7 @@ yyreduce:
3552
3549
 
3553
3550
  case 137:
3554
3551
  /* Line 1792 of yacc.c */
3555
- #line 1547 "src/Slice/Grammar.y"
3552
+ #line 1546 "src/Slice/Grammar.y"
3556
3553
  {
3557
3554
  BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (7)]));
3558
3555
  StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(7) - (7)]));
@@ -3565,7 +3562,7 @@ yyreduce:
3565
3562
 
3566
3563
  case 138:
3567
3564
  /* Line 1792 of yacc.c */
3568
- #line 1556 "src/Slice/Grammar.y"
3565
+ #line 1555 "src/Slice/Grammar.y"
3569
3566
  {
3570
3567
  BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (7)]));
3571
3568
  StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(7) - (7)]));
@@ -3579,7 +3576,7 @@ yyreduce:
3579
3576
 
3580
3577
  case 139:
3581
3578
  /* Line 1792 of yacc.c */
3582
- #line 1571 "src/Slice/Grammar.y"
3579
+ #line 1570 "src/Slice/Grammar.y"
3583
3580
  {
3584
3581
  BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (10)]));
3585
3582
  StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(10) - (10)]));
@@ -3594,7 +3591,7 @@ yyreduce:
3594
3591
 
3595
3592
  case 140:
3596
3593
  /* Line 1792 of yacc.c */
3597
- #line 1582 "src/Slice/Grammar.y"
3594
+ #line 1581 "src/Slice/Grammar.y"
3598
3595
  {
3599
3596
  BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (10)]));
3600
3597
  StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(10) - (10)]));
@@ -3610,7 +3607,7 @@ yyreduce:
3610
3607
 
3611
3608
  case 141:
3612
3609
  /* Line 1792 of yacc.c */
3613
- #line 1599 "src/Slice/Grammar.y"
3610
+ #line 1598 "src/Slice/Grammar.y"
3614
3611
  {
3615
3612
  (yyval) = (yyvsp[(2) - (2)]);
3616
3613
  }
@@ -3618,7 +3615,7 @@ yyreduce:
3618
3615
 
3619
3616
  case 142:
3620
3617
  /* Line 1792 of yacc.c */
3621
- #line 1603 "src/Slice/Grammar.y"
3618
+ #line 1602 "src/Slice/Grammar.y"
3622
3619
  {
3623
3620
  StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
3624
3621
  unit->error("keyword `" + ident->v + "' cannot be used as enumeration name");
@@ -3628,7 +3625,7 @@ yyreduce:
3628
3625
 
3629
3626
  case 143:
3630
3627
  /* Line 1792 of yacc.c */
3631
- #line 1614 "src/Slice/Grammar.y"
3628
+ #line 1613 "src/Slice/Grammar.y"
3632
3629
  {
3633
3630
  BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (2)]));
3634
3631
  StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
@@ -3649,7 +3646,7 @@ yyreduce:
3649
3646
 
3650
3647
  case 144:
3651
3648
  /* Line 1792 of yacc.c */
3652
- #line 1631 "src/Slice/Grammar.y"
3649
+ #line 1630 "src/Slice/Grammar.y"
3653
3650
  {
3654
3651
  EnumPtr en = EnumPtr::dynamicCast((yyvsp[(3) - (6)]));
3655
3652
  if(en)
@@ -3667,7 +3664,7 @@ yyreduce:
3667
3664
 
3668
3665
  case 145:
3669
3666
  /* Line 1792 of yacc.c */
3670
- #line 1646 "src/Slice/Grammar.y"
3667
+ #line 1645 "src/Slice/Grammar.y"
3671
3668
  {
3672
3669
  unit->error("missing enumeration name");
3673
3670
  BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (2)]));
@@ -3680,7 +3677,7 @@ yyreduce:
3680
3677
 
3681
3678
  case 146:
3682
3679
  /* Line 1792 of yacc.c */
3683
- #line 1655 "src/Slice/Grammar.y"
3680
+ #line 1654 "src/Slice/Grammar.y"
3684
3681
  {
3685
3682
  unit->popContainer();
3686
3683
  (yyval) = (yyvsp[(2) - (6)]);
@@ -3689,7 +3686,7 @@ yyreduce:
3689
3686
 
3690
3687
  case 147:
3691
3688
  /* Line 1792 of yacc.c */
3692
- #line 1665 "src/Slice/Grammar.y"
3689
+ #line 1664 "src/Slice/Grammar.y"
3693
3690
  {
3694
3691
  EnumeratorListTokPtr ens = EnumeratorListTokPtr::dynamicCast((yyvsp[(1) - (3)]));
3695
3692
  ens->v.splice(ens->v.end(), EnumeratorListTokPtr::dynamicCast((yyvsp[(3) - (3)]))->v);
@@ -3699,14 +3696,14 @@ yyreduce:
3699
3696
 
3700
3697
  case 148:
3701
3698
  /* Line 1792 of yacc.c */
3702
- #line 1671 "src/Slice/Grammar.y"
3699
+ #line 1670 "src/Slice/Grammar.y"
3703
3700
  {
3704
3701
  }
3705
3702
  break;
3706
3703
 
3707
3704
  case 149:
3708
3705
  /* Line 1792 of yacc.c */
3709
- #line 1679 "src/Slice/Grammar.y"
3706
+ #line 1678 "src/Slice/Grammar.y"
3710
3707
  {
3711
3708
  StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
3712
3709
  EnumeratorListTokPtr ens = new EnumeratorListTok;
@@ -3722,7 +3719,7 @@ yyreduce:
3722
3719
 
3723
3720
  case 150:
3724
3721
  /* Line 1792 of yacc.c */
3725
- #line 1691 "src/Slice/Grammar.y"
3722
+ #line 1690 "src/Slice/Grammar.y"
3726
3723
  {
3727
3724
  StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(1) - (3)]));
3728
3725
  EnumeratorListTokPtr ens = new EnumeratorListTok;
@@ -3746,7 +3743,7 @@ yyreduce:
3746
3743
 
3747
3744
  case 151:
3748
3745
  /* Line 1792 of yacc.c */
3749
- #line 1711 "src/Slice/Grammar.y"
3746
+ #line 1710 "src/Slice/Grammar.y"
3750
3747
  {
3751
3748
  StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
3752
3749
  unit->error("keyword `" + ident->v + "' cannot be used as enumerator");
@@ -3757,7 +3754,7 @@ yyreduce:
3757
3754
 
3758
3755
  case 152:
3759
3756
  /* Line 1792 of yacc.c */
3760
- #line 1718 "src/Slice/Grammar.y"
3757
+ #line 1717 "src/Slice/Grammar.y"
3761
3758
  {
3762
3759
  EnumeratorListTokPtr ens = new EnumeratorListTok;
3763
3760
  (yyval) = ens; // Dummy
@@ -3766,7 +3763,7 @@ yyreduce:
3766
3763
 
3767
3764
  case 153:
3768
3765
  /* Line 1792 of yacc.c */
3769
- #line 1728 "src/Slice/Grammar.y"
3766
+ #line 1727 "src/Slice/Grammar.y"
3770
3767
  {
3771
3768
  (yyval) = (yyvsp[(1) - (1)]);
3772
3769
  }
@@ -3774,7 +3771,7 @@ yyreduce:
3774
3771
 
3775
3772
  case 154:
3776
3773
  /* Line 1792 of yacc.c */
3777
- #line 1732 "src/Slice/Grammar.y"
3774
+ #line 1731 "src/Slice/Grammar.y"
3778
3775
  {
3779
3776
  StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
3780
3777
  ContainedList cl = unit->currentContainer()->lookupContained(scoped->v);
@@ -3812,7 +3809,7 @@ yyreduce:
3812
3809
 
3813
3810
  case 155:
3814
3811
  /* Line 1792 of yacc.c */
3815
- #line 1771 "src/Slice/Grammar.y"
3812
+ #line 1770 "src/Slice/Grammar.y"
3816
3813
  {
3817
3814
  BoolTokPtr out = new BoolTok;
3818
3815
  out->v = true;
@@ -3822,7 +3819,7 @@ yyreduce:
3822
3819
 
3823
3820
  case 156:
3824
3821
  /* Line 1792 of yacc.c */
3825
- #line 1777 "src/Slice/Grammar.y"
3822
+ #line 1776 "src/Slice/Grammar.y"
3826
3823
  {
3827
3824
  BoolTokPtr out = new BoolTok;
3828
3825
  out->v = false;
@@ -3832,14 +3829,14 @@ yyreduce:
3832
3829
 
3833
3830
  case 157:
3834
3831
  /* Line 1792 of yacc.c */
3835
- #line 1788 "src/Slice/Grammar.y"
3832
+ #line 1787 "src/Slice/Grammar.y"
3836
3833
  {
3837
3834
  }
3838
3835
  break;
3839
3836
 
3840
3837
  case 158:
3841
3838
  /* Line 1792 of yacc.c */
3842
- #line 1791 "src/Slice/Grammar.y"
3839
+ #line 1790 "src/Slice/Grammar.y"
3843
3840
  {
3844
3841
  BoolTokPtr isOutParam = BoolTokPtr::dynamicCast((yyvsp[(1) - (3)]));
3845
3842
  OptionalDefTokPtr tsp = OptionalDefTokPtr::dynamicCast((yyvsp[(3) - (3)]));
@@ -3859,7 +3856,7 @@ yyreduce:
3859
3856
 
3860
3857
  case 159:
3861
3858
  /* Line 1792 of yacc.c */
3862
- #line 1807 "src/Slice/Grammar.y"
3859
+ #line 1806 "src/Slice/Grammar.y"
3863
3860
  {
3864
3861
  BoolTokPtr isOutParam = BoolTokPtr::dynamicCast((yyvsp[(3) - (5)]));
3865
3862
  OptionalDefTokPtr tsp = OptionalDefTokPtr::dynamicCast((yyvsp[(5) - (5)]));
@@ -3879,7 +3876,7 @@ yyreduce:
3879
3876
 
3880
3877
  case 160:
3881
3878
  /* Line 1792 of yacc.c */
3882
- #line 1823 "src/Slice/Grammar.y"
3879
+ #line 1822 "src/Slice/Grammar.y"
3883
3880
  {
3884
3881
  BoolTokPtr isOutParam = BoolTokPtr::dynamicCast((yyvsp[(1) - (4)]));
3885
3882
  TypePtr type = TypePtr::dynamicCast((yyvsp[(3) - (4)]));
@@ -3895,7 +3892,7 @@ yyreduce:
3895
3892
 
3896
3893
  case 161:
3897
3894
  /* Line 1792 of yacc.c */
3898
- #line 1835 "src/Slice/Grammar.y"
3895
+ #line 1834 "src/Slice/Grammar.y"
3899
3896
  {
3900
3897
  BoolTokPtr isOutParam = BoolTokPtr::dynamicCast((yyvsp[(3) - (6)]));
3901
3898
  TypePtr type = TypePtr::dynamicCast((yyvsp[(5) - (6)]));
@@ -3911,7 +3908,7 @@ yyreduce:
3911
3908
 
3912
3909
  case 162:
3913
3910
  /* Line 1792 of yacc.c */
3914
- #line 1847 "src/Slice/Grammar.y"
3911
+ #line 1846 "src/Slice/Grammar.y"
3915
3912
  {
3916
3913
  BoolTokPtr isOutParam = BoolTokPtr::dynamicCast((yyvsp[(1) - (3)]));
3917
3914
  TypePtr type = TypePtr::dynamicCast((yyvsp[(3) - (3)]));
@@ -3926,7 +3923,7 @@ yyreduce:
3926
3923
 
3927
3924
  case 163:
3928
3925
  /* Line 1792 of yacc.c */
3929
- #line 1858 "src/Slice/Grammar.y"
3926
+ #line 1857 "src/Slice/Grammar.y"
3930
3927
  {
3931
3928
  BoolTokPtr isOutParam = BoolTokPtr::dynamicCast((yyvsp[(3) - (5)]));
3932
3929
  TypePtr type = TypePtr::dynamicCast((yyvsp[(5) - (5)]));
@@ -3941,7 +3938,7 @@ yyreduce:
3941
3938
 
3942
3939
  case 164:
3943
3940
  /* Line 1792 of yacc.c */
3944
- #line 1874 "src/Slice/Grammar.y"
3941
+ #line 1873 "src/Slice/Grammar.y"
3945
3942
  {
3946
3943
  (yyval) = (yyvsp[(2) - (2)]);
3947
3944
  }
@@ -3949,7 +3946,7 @@ yyreduce:
3949
3946
 
3950
3947
  case 165:
3951
3948
  /* Line 1792 of yacc.c */
3952
- #line 1878 "src/Slice/Grammar.y"
3949
+ #line 1877 "src/Slice/Grammar.y"
3953
3950
  {
3954
3951
  (yyval) = new ExceptionListTok;
3955
3952
  }
@@ -3957,132 +3954,117 @@ yyreduce:
3957
3954
 
3958
3955
  case 166:
3959
3956
  /* Line 1792 of yacc.c */
3960
- #line 1887 "src/Slice/Grammar.y"
3957
+ #line 1886 "src/Slice/Grammar.y"
3961
3958
  {
3962
3959
  }
3963
3960
  break;
3964
3961
 
3965
3962
  case 167:
3966
3963
  /* Line 1792 of yacc.c */
3967
- #line 1890 "src/Slice/Grammar.y"
3964
+ #line 1889 "src/Slice/Grammar.y"
3968
3965
  {
3969
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
3970
- ident->v = "::" + ident->v;
3971
- (yyval) = ident;
3972
3966
  }
3973
3967
  break;
3974
3968
 
3975
3969
  case 168:
3976
3970
  /* Line 1792 of yacc.c */
3977
- #line 1896 "src/Slice/Grammar.y"
3978
- {
3979
- StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(1) - (3)]));
3980
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(3) - (3)]));
3981
- scoped->v += "::";
3982
- scoped->v += ident->v;
3983
- (yyval) = scoped;
3984
- }
3985
- break;
3986
-
3987
- case 169:
3988
- /* Line 1792 of yacc.c */
3989
- #line 1909 "src/Slice/Grammar.y"
3971
+ #line 1897 "src/Slice/Grammar.y"
3990
3972
  {
3991
3973
  (yyval) = unit->builtin(Builtin::KindByte);
3992
3974
  }
3993
3975
  break;
3994
3976
 
3995
- case 170:
3977
+ case 169:
3996
3978
  /* Line 1792 of yacc.c */
3997
- #line 1913 "src/Slice/Grammar.y"
3979
+ #line 1901 "src/Slice/Grammar.y"
3998
3980
  {
3999
3981
  (yyval) = unit->builtin(Builtin::KindBool);
4000
3982
  }
4001
3983
  break;
4002
3984
 
4003
- case 171:
3985
+ case 170:
4004
3986
  /* Line 1792 of yacc.c */
4005
- #line 1917 "src/Slice/Grammar.y"
3987
+ #line 1905 "src/Slice/Grammar.y"
4006
3988
  {
4007
3989
  (yyval) = unit->builtin(Builtin::KindShort);
4008
3990
  }
4009
3991
  break;
4010
3992
 
4011
- case 172:
3993
+ case 171:
4012
3994
  /* Line 1792 of yacc.c */
4013
- #line 1921 "src/Slice/Grammar.y"
3995
+ #line 1909 "src/Slice/Grammar.y"
4014
3996
  {
4015
3997
  (yyval) = unit->builtin(Builtin::KindInt);
4016
3998
  }
4017
3999
  break;
4018
4000
 
4019
- case 173:
4001
+ case 172:
4020
4002
  /* Line 1792 of yacc.c */
4021
- #line 1925 "src/Slice/Grammar.y"
4003
+ #line 1913 "src/Slice/Grammar.y"
4022
4004
  {
4023
4005
  (yyval) = unit->builtin(Builtin::KindLong);
4024
4006
  }
4025
4007
  break;
4026
4008
 
4027
- case 174:
4009
+ case 173:
4028
4010
  /* Line 1792 of yacc.c */
4029
- #line 1929 "src/Slice/Grammar.y"
4011
+ #line 1917 "src/Slice/Grammar.y"
4030
4012
  {
4031
4013
  (yyval) = unit->builtin(Builtin::KindFloat);
4032
4014
  }
4033
4015
  break;
4034
4016
 
4035
- case 175:
4017
+ case 174:
4036
4018
  /* Line 1792 of yacc.c */
4037
- #line 1933 "src/Slice/Grammar.y"
4019
+ #line 1921 "src/Slice/Grammar.y"
4038
4020
  {
4039
4021
  (yyval) = unit->builtin(Builtin::KindDouble);
4040
4022
  }
4041
4023
  break;
4042
4024
 
4043
- case 176:
4025
+ case 175:
4044
4026
  /* Line 1792 of yacc.c */
4045
- #line 1937 "src/Slice/Grammar.y"
4027
+ #line 1925 "src/Slice/Grammar.y"
4046
4028
  {
4047
4029
  (yyval) = unit->builtin(Builtin::KindString);
4048
4030
  }
4049
4031
  break;
4050
4032
 
4051
- case 177:
4033
+ case 176:
4052
4034
  /* Line 1792 of yacc.c */
4053
- #line 1941 "src/Slice/Grammar.y"
4035
+ #line 1929 "src/Slice/Grammar.y"
4054
4036
  {
4055
4037
  (yyval) = unit->builtin(Builtin::KindObject);
4056
4038
  }
4057
4039
  break;
4058
4040
 
4059
- case 178:
4041
+ case 177:
4060
4042
  /* Line 1792 of yacc.c */
4061
- #line 1945 "src/Slice/Grammar.y"
4043
+ #line 1933 "src/Slice/Grammar.y"
4062
4044
  {
4063
4045
  (yyval) = unit->builtin(Builtin::KindObjectProxy);
4064
4046
  }
4065
4047
  break;
4066
4048
 
4067
- case 179:
4049
+ case 178:
4068
4050
  /* Line 1792 of yacc.c */
4069
- #line 1949 "src/Slice/Grammar.y"
4051
+ #line 1937 "src/Slice/Grammar.y"
4070
4052
  {
4071
4053
  (yyval) = unit->builtin(Builtin::KindLocalObject);
4072
4054
  }
4073
4055
  break;
4074
4056
 
4075
- case 180:
4057
+ case 179:
4076
4058
  /* Line 1792 of yacc.c */
4077
- #line 1953 "src/Slice/Grammar.y"
4059
+ #line 1941 "src/Slice/Grammar.y"
4078
4060
  {
4079
4061
  (yyval) = unit->builtin(Builtin::KindValue);
4080
4062
  }
4081
4063
  break;
4082
4064
 
4083
- case 181:
4065
+ case 180:
4084
4066
  /* Line 1792 of yacc.c */
4085
- #line 1957 "src/Slice/Grammar.y"
4067
+ #line 1945 "src/Slice/Grammar.y"
4086
4068
  {
4087
4069
  StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
4088
4070
  ContainerPtr cont = unit->currentContainer();
@@ -4103,9 +4085,9 @@ yyreduce:
4103
4085
  }
4104
4086
  break;
4105
4087
 
4106
- case 182:
4088
+ case 181:
4107
4089
  /* Line 1792 of yacc.c */
4108
- #line 1976 "src/Slice/Grammar.y"
4090
+ #line 1964 "src/Slice/Grammar.y"
4109
4091
  {
4110
4092
  StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(1) - (2)]));
4111
4093
  ContainerPtr cont = unit->currentContainer();
@@ -4143,9 +4125,9 @@ yyreduce:
4143
4125
  }
4144
4126
  break;
4145
4127
 
4146
- case 183:
4128
+ case 182:
4147
4129
  /* Line 1792 of yacc.c */
4148
- #line 2017 "src/Slice/Grammar.y"
4130
+ #line 2005 "src/Slice/Grammar.y"
4149
4131
  {
4150
4132
  StringTokPtr str1 = StringTokPtr::dynamicCast((yyvsp[(1) - (2)]));
4151
4133
  StringTokPtr str2 = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
@@ -4153,16 +4135,16 @@ yyreduce:
4153
4135
  }
4154
4136
  break;
4155
4137
 
4156
- case 184:
4138
+ case 183:
4157
4139
  /* Line 1792 of yacc.c */
4158
- #line 2023 "src/Slice/Grammar.y"
4140
+ #line 2011 "src/Slice/Grammar.y"
4159
4141
  {
4160
4142
  }
4161
4143
  break;
4162
4144
 
4163
- case 185:
4145
+ case 184:
4164
4146
  /* Line 1792 of yacc.c */
4165
- #line 2031 "src/Slice/Grammar.y"
4147
+ #line 2019 "src/Slice/Grammar.y"
4166
4148
  {
4167
4149
  StringTokPtr str = StringTokPtr::dynamicCast((yyvsp[(3) - (3)]));
4168
4150
  StringListTokPtr stringList = StringListTokPtr::dynamicCast((yyvsp[(1) - (3)]));
@@ -4171,9 +4153,9 @@ yyreduce:
4171
4153
  }
4172
4154
  break;
4173
4155
 
4174
- case 186:
4156
+ case 185:
4175
4157
  /* Line 1792 of yacc.c */
4176
- #line 2038 "src/Slice/Grammar.y"
4158
+ #line 2026 "src/Slice/Grammar.y"
4177
4159
  {
4178
4160
  StringTokPtr str = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
4179
4161
  StringListTokPtr stringList = new StringListTok;
@@ -4182,9 +4164,9 @@ yyreduce:
4182
4164
  }
4183
4165
  break;
4184
4166
 
4185
- case 187:
4167
+ case 186:
4186
4168
  /* Line 1792 of yacc.c */
4187
- #line 2050 "src/Slice/Grammar.y"
4169
+ #line 2038 "src/Slice/Grammar.y"
4188
4170
  {
4189
4171
  BoolTokPtr local = new BoolTok;
4190
4172
  local->v = true;
@@ -4192,9 +4174,9 @@ yyreduce:
4192
4174
  }
4193
4175
  break;
4194
4176
 
4195
- case 188:
4177
+ case 187:
4196
4178
  /* Line 1792 of yacc.c */
4197
- #line 2056 "src/Slice/Grammar.y"
4179
+ #line 2044 "src/Slice/Grammar.y"
4198
4180
  {
4199
4181
  BoolTokPtr local = new BoolTok;
4200
4182
  local->v = false;
@@ -4202,9 +4184,9 @@ yyreduce:
4202
4184
  }
4203
4185
  break;
4204
4186
 
4205
- case 189:
4187
+ case 188:
4206
4188
  /* Line 1792 of yacc.c */
4207
- #line 2067 "src/Slice/Grammar.y"
4189
+ #line 2055 "src/Slice/Grammar.y"
4208
4190
  {
4209
4191
  BuiltinPtr type = unit->builtin(Builtin::KindLong);
4210
4192
  IntegerTokPtr intVal = IntegerTokPtr::dynamicCast((yyvsp[(1) - (1)]));
@@ -4219,9 +4201,9 @@ yyreduce:
4219
4201
  }
4220
4202
  break;
4221
4203
 
4222
- case 190:
4204
+ case 189:
4223
4205
  /* Line 1792 of yacc.c */
4224
- #line 2080 "src/Slice/Grammar.y"
4206
+ #line 2068 "src/Slice/Grammar.y"
4225
4207
  {
4226
4208
  BuiltinPtr type = unit->builtin(Builtin::KindDouble);
4227
4209
  FloatingTokPtr floatVal = FloatingTokPtr::dynamicCast((yyvsp[(1) - (1)]));
@@ -4236,9 +4218,9 @@ yyreduce:
4236
4218
  }
4237
4219
  break;
4238
4220
 
4239
- case 191:
4221
+ case 190:
4240
4222
  /* Line 1792 of yacc.c */
4241
- #line 2093 "src/Slice/Grammar.y"
4223
+ #line 2081 "src/Slice/Grammar.y"
4242
4224
  {
4243
4225
  StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
4244
4226
  ConstDefTokPtr def = new ConstDefTok;
@@ -4287,9 +4269,9 @@ yyreduce:
4287
4269
  }
4288
4270
  break;
4289
4271
 
4290
- case 192:
4272
+ case 191:
4291
4273
  /* Line 1792 of yacc.c */
4292
- #line 2140 "src/Slice/Grammar.y"
4274
+ #line 2128 "src/Slice/Grammar.y"
4293
4275
  {
4294
4276
  BuiltinPtr type = unit->builtin(Builtin::KindString);
4295
4277
  StringTokPtr literal = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
@@ -4302,9 +4284,9 @@ yyreduce:
4302
4284
  }
4303
4285
  break;
4304
4286
 
4305
- case 193:
4287
+ case 192:
4306
4288
  /* Line 1792 of yacc.c */
4307
- #line 2151 "src/Slice/Grammar.y"
4289
+ #line 2139 "src/Slice/Grammar.y"
4308
4290
  {
4309
4291
  BuiltinPtr type = unit->builtin(Builtin::KindBool);
4310
4292
  StringTokPtr literal = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
@@ -4317,9 +4299,9 @@ yyreduce:
4317
4299
  }
4318
4300
  break;
4319
4301
 
4320
- case 194:
4302
+ case 193:
4321
4303
  /* Line 1792 of yacc.c */
4322
- #line 2162 "src/Slice/Grammar.y"
4304
+ #line 2150 "src/Slice/Grammar.y"
4323
4305
  {
4324
4306
  BuiltinPtr type = unit->builtin(Builtin::KindBool);
4325
4307
  StringTokPtr literal = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
@@ -4332,9 +4314,9 @@ yyreduce:
4332
4314
  }
4333
4315
  break;
4334
4316
 
4335
- case 195:
4317
+ case 194:
4336
4318
  /* Line 1792 of yacc.c */
4337
- #line 2178 "src/Slice/Grammar.y"
4319
+ #line 2166 "src/Slice/Grammar.y"
4338
4320
  {
4339
4321
  StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[(2) - (6)]));
4340
4322
  TypePtr const_type = TypePtr::dynamicCast((yyvsp[(3) - (6)]));
@@ -4345,9 +4327,9 @@ yyreduce:
4345
4327
  }
4346
4328
  break;
4347
4329
 
4348
- case 196:
4330
+ case 195:
4349
4331
  /* Line 1792 of yacc.c */
4350
- #line 2187 "src/Slice/Grammar.y"
4332
+ #line 2175 "src/Slice/Grammar.y"
4351
4333
  {
4352
4334
  StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[(2) - (5)]));
4353
4335
  TypePtr const_type = TypePtr::dynamicCast((yyvsp[(3) - (5)]));
@@ -4358,219 +4340,219 @@ yyreduce:
4358
4340
  }
4359
4341
  break;
4360
4342
 
4343
+ case 196:
4344
+ /* Line 1792 of yacc.c */
4345
+ #line 2189 "src/Slice/Grammar.y"
4346
+ {
4347
+ }
4348
+ break;
4349
+
4361
4350
  case 197:
4362
4351
  /* Line 1792 of yacc.c */
4363
- #line 2201 "src/Slice/Grammar.y"
4352
+ #line 2192 "src/Slice/Grammar.y"
4364
4353
  {
4365
4354
  }
4366
4355
  break;
4367
4356
 
4368
4357
  case 198:
4369
4358
  /* Line 1792 of yacc.c */
4370
- #line 2204 "src/Slice/Grammar.y"
4359
+ #line 2195 "src/Slice/Grammar.y"
4371
4360
  {
4372
4361
  }
4373
4362
  break;
4374
4363
 
4375
4364
  case 199:
4376
4365
  /* Line 1792 of yacc.c */
4377
- #line 2207 "src/Slice/Grammar.y"
4366
+ #line 2198 "src/Slice/Grammar.y"
4378
4367
  {
4379
4368
  }
4380
4369
  break;
4381
4370
 
4382
4371
  case 200:
4383
4372
  /* Line 1792 of yacc.c */
4384
- #line 2210 "src/Slice/Grammar.y"
4373
+ #line 2201 "src/Slice/Grammar.y"
4385
4374
  {
4386
4375
  }
4387
4376
  break;
4388
4377
 
4389
4378
  case 201:
4390
4379
  /* Line 1792 of yacc.c */
4391
- #line 2213 "src/Slice/Grammar.y"
4380
+ #line 2204 "src/Slice/Grammar.y"
4392
4381
  {
4393
4382
  }
4394
4383
  break;
4395
4384
 
4396
4385
  case 202:
4397
4386
  /* Line 1792 of yacc.c */
4398
- #line 2216 "src/Slice/Grammar.y"
4387
+ #line 2207 "src/Slice/Grammar.y"
4399
4388
  {
4400
4389
  }
4401
4390
  break;
4402
4391
 
4403
4392
  case 203:
4404
4393
  /* Line 1792 of yacc.c */
4405
- #line 2219 "src/Slice/Grammar.y"
4394
+ #line 2210 "src/Slice/Grammar.y"
4406
4395
  {
4407
4396
  }
4408
4397
  break;
4409
4398
 
4410
4399
  case 204:
4411
4400
  /* Line 1792 of yacc.c */
4412
- #line 2222 "src/Slice/Grammar.y"
4401
+ #line 2213 "src/Slice/Grammar.y"
4413
4402
  {
4414
4403
  }
4415
4404
  break;
4416
4405
 
4417
4406
  case 205:
4418
4407
  /* Line 1792 of yacc.c */
4419
- #line 2225 "src/Slice/Grammar.y"
4408
+ #line 2216 "src/Slice/Grammar.y"
4420
4409
  {
4421
4410
  }
4422
4411
  break;
4423
4412
 
4424
4413
  case 206:
4425
4414
  /* Line 1792 of yacc.c */
4426
- #line 2228 "src/Slice/Grammar.y"
4415
+ #line 2219 "src/Slice/Grammar.y"
4427
4416
  {
4428
4417
  }
4429
4418
  break;
4430
4419
 
4431
4420
  case 207:
4432
4421
  /* Line 1792 of yacc.c */
4433
- #line 2231 "src/Slice/Grammar.y"
4422
+ #line 2222 "src/Slice/Grammar.y"
4434
4423
  {
4435
4424
  }
4436
4425
  break;
4437
4426
 
4438
4427
  case 208:
4439
4428
  /* Line 1792 of yacc.c */
4440
- #line 2234 "src/Slice/Grammar.y"
4429
+ #line 2225 "src/Slice/Grammar.y"
4441
4430
  {
4442
4431
  }
4443
4432
  break;
4444
4433
 
4445
4434
  case 209:
4446
4435
  /* Line 1792 of yacc.c */
4447
- #line 2237 "src/Slice/Grammar.y"
4436
+ #line 2228 "src/Slice/Grammar.y"
4448
4437
  {
4449
4438
  }
4450
4439
  break;
4451
4440
 
4452
4441
  case 210:
4453
4442
  /* Line 1792 of yacc.c */
4454
- #line 2240 "src/Slice/Grammar.y"
4443
+ #line 2231 "src/Slice/Grammar.y"
4455
4444
  {
4456
4445
  }
4457
4446
  break;
4458
4447
 
4459
4448
  case 211:
4460
4449
  /* Line 1792 of yacc.c */
4461
- #line 2243 "src/Slice/Grammar.y"
4450
+ #line 2234 "src/Slice/Grammar.y"
4462
4451
  {
4463
4452
  }
4464
4453
  break;
4465
4454
 
4466
4455
  case 212:
4467
4456
  /* Line 1792 of yacc.c */
4468
- #line 2246 "src/Slice/Grammar.y"
4457
+ #line 2237 "src/Slice/Grammar.y"
4469
4458
  {
4470
4459
  }
4471
4460
  break;
4472
4461
 
4473
4462
  case 213:
4474
4463
  /* Line 1792 of yacc.c */
4475
- #line 2249 "src/Slice/Grammar.y"
4464
+ #line 2240 "src/Slice/Grammar.y"
4476
4465
  {
4477
4466
  }
4478
4467
  break;
4479
4468
 
4480
4469
  case 214:
4481
4470
  /* Line 1792 of yacc.c */
4482
- #line 2252 "src/Slice/Grammar.y"
4471
+ #line 2243 "src/Slice/Grammar.y"
4483
4472
  {
4484
4473
  }
4485
4474
  break;
4486
4475
 
4487
4476
  case 215:
4488
4477
  /* Line 1792 of yacc.c */
4489
- #line 2255 "src/Slice/Grammar.y"
4478
+ #line 2246 "src/Slice/Grammar.y"
4490
4479
  {
4491
4480
  }
4492
4481
  break;
4493
4482
 
4494
4483
  case 216:
4495
4484
  /* Line 1792 of yacc.c */
4496
- #line 2258 "src/Slice/Grammar.y"
4485
+ #line 2249 "src/Slice/Grammar.y"
4497
4486
  {
4498
4487
  }
4499
4488
  break;
4500
4489
 
4501
4490
  case 217:
4502
4491
  /* Line 1792 of yacc.c */
4503
- #line 2261 "src/Slice/Grammar.y"
4492
+ #line 2252 "src/Slice/Grammar.y"
4504
4493
  {
4505
4494
  }
4506
4495
  break;
4507
4496
 
4508
4497
  case 218:
4509
4498
  /* Line 1792 of yacc.c */
4510
- #line 2264 "src/Slice/Grammar.y"
4499
+ #line 2255 "src/Slice/Grammar.y"
4511
4500
  {
4512
4501
  }
4513
4502
  break;
4514
4503
 
4515
4504
  case 219:
4516
4505
  /* Line 1792 of yacc.c */
4517
- #line 2267 "src/Slice/Grammar.y"
4506
+ #line 2258 "src/Slice/Grammar.y"
4518
4507
  {
4519
4508
  }
4520
4509
  break;
4521
4510
 
4522
4511
  case 220:
4523
4512
  /* Line 1792 of yacc.c */
4524
- #line 2270 "src/Slice/Grammar.y"
4513
+ #line 2261 "src/Slice/Grammar.y"
4525
4514
  {
4526
4515
  }
4527
4516
  break;
4528
4517
 
4529
4518
  case 221:
4530
4519
  /* Line 1792 of yacc.c */
4531
- #line 2273 "src/Slice/Grammar.y"
4520
+ #line 2264 "src/Slice/Grammar.y"
4532
4521
  {
4533
4522
  }
4534
4523
  break;
4535
4524
 
4536
4525
  case 222:
4537
4526
  /* Line 1792 of yacc.c */
4538
- #line 2276 "src/Slice/Grammar.y"
4527
+ #line 2267 "src/Slice/Grammar.y"
4539
4528
  {
4540
4529
  }
4541
4530
  break;
4542
4531
 
4543
4532
  case 223:
4544
4533
  /* Line 1792 of yacc.c */
4545
- #line 2279 "src/Slice/Grammar.y"
4534
+ #line 2270 "src/Slice/Grammar.y"
4546
4535
  {
4547
4536
  }
4548
4537
  break;
4549
4538
 
4550
4539
  case 224:
4551
4540
  /* Line 1792 of yacc.c */
4552
- #line 2282 "src/Slice/Grammar.y"
4541
+ #line 2273 "src/Slice/Grammar.y"
4553
4542
  {
4554
4543
  }
4555
4544
  break;
4556
4545
 
4557
4546
  case 225:
4558
4547
  /* Line 1792 of yacc.c */
4559
- #line 2285 "src/Slice/Grammar.y"
4560
- {
4561
- }
4562
- break;
4563
-
4564
- case 226:
4565
- /* Line 1792 of yacc.c */
4566
- #line 2288 "src/Slice/Grammar.y"
4548
+ #line 2276 "src/Slice/Grammar.y"
4567
4549
  {
4568
4550
  }
4569
4551
  break;
4570
4552
 
4571
4553
 
4572
4554
  /* Line 1792 of yacc.c */
4573
- #line 4574 "src/Slice/Grammar.cpp"
4555
+ #line 4556 "src/Slice/Grammar.cpp"
4574
4556
  default: break;
4575
4557
  }
4576
4558
  /* User semantic actions sometimes alter yychar, and that requires
@@ -4802,5 +4784,5 @@ yyreturn:
4802
4784
 
4803
4785
 
4804
4786
  /* Line 2055 of yacc.c */
4805
- #line 2292 "src/Slice/Grammar.y"
4787
+ #line 2280 "src/Slice/Grammar.y"
4806
4788