summaryrefslogtreecommitdiff
path: root/ddl/out/LambdaCube.PipelineSchema.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ddl/out/LambdaCube.PipelineSchema.cs')
-rw-r--r--ddl/out/LambdaCube.PipelineSchema.cs16
1 files changed, 8 insertions, 8 deletions
diff --git a/ddl/out/LambdaCube.PipelineSchema.cs b/ddl/out/LambdaCube.PipelineSchema.cs
index 88f3d16..4336b74 100644
--- a/ddl/out/LambdaCube.PipelineSchema.cs
+++ b/ddl/out/LambdaCube.PipelineSchema.cs
@@ -1,5 +1,5 @@
1// generated file, do not modify! 1// generated file, do not modify!
2// 2016-03-21T15:32:17.702608000000Z 2// 2016-03-27T21:14:12.321500000000Z
3 3
4using System; 4using System;
5using System.Linq; 5using System.Linq;
@@ -169,7 +169,7 @@ namespace LambdaCube.PipelineSchema {
169 return null; 169 return null;
170 } 170 }
171 171
172 JToken toJSON(StreamType v) { 172 public static JToken toJSON(StreamType v) {
173 var obj = new JObject(); 173 var obj = new JObject();
174 switch (v.tag) { 174 switch (v.tag) {
175 case StreamType.Tag.Attribute_Word: 175 case StreamType.Tag.Attribute_Word:
@@ -238,7 +238,7 @@ namespace LambdaCube.PipelineSchema {
238 } 238 }
239 return obj; 239 return obj;
240 } 240 }
241 JToken toJSON(ObjectArraySchema v) { 241 public static JToken toJSON(ObjectArraySchema v) {
242 var obj = new JObject(); 242 var obj = new JObject();
243 switch (v.tag) { 243 switch (v.tag) {
244 case ObjectArraySchema.Tag.ObjectArraySchema: 244 case ObjectArraySchema.Tag.ObjectArraySchema:
@@ -252,7 +252,7 @@ namespace LambdaCube.PipelineSchema {
252 } 252 }
253 return obj; 253 return obj;
254 } 254 }
255 JToken toJSON(PipelineSchema v) { 255 public static JToken toJSON(PipelineSchema v) {
256 var obj = new JObject(); 256 var obj = new JObject();
257 switch (v.tag) { 257 switch (v.tag) {
258 case PipelineSchema.Tag.PipelineSchema: 258 case PipelineSchema.Tag.PipelineSchema:
@@ -267,22 +267,22 @@ namespace LambdaCube.PipelineSchema {
267 return obj; 267 return obj;
268 } 268 }
269 269
270 JToken toJSON(string v) { return new JValue(v); } 270 public static JToken toJSON(string v) { return new JValue(v); }
271 JToken toJSON(Dictionary<string, global::LambdaCube.PipelineSchema.InputType> v) { 271 public static JToken toJSON(Dictionary<string, global::LambdaCube.PipelineSchema.InputType> v) {
272 var obj = new JObject(); 272 var obj = new JObject();
273 foreach (var i in v) { 273 foreach (var i in v) {
274 obj[i.Key] = toJSON(i.Value); 274 obj[i.Key] = toJSON(i.Value);
275 } 275 }
276 return obj; 276 return obj;
277 } 277 }
278 JToken toJSON(Dictionary<string, global::LambdaCube.PipelineSchema.ObjectArraySchema> v) { 278 public static JToken toJSON(Dictionary<string, global::LambdaCube.PipelineSchema.ObjectArraySchema> v) {
279 var obj = new JObject(); 279 var obj = new JObject();
280 foreach (var i in v) { 280 foreach (var i in v) {
281 obj[i.Key] = toJSON(i.Value); 281 obj[i.Key] = toJSON(i.Value);
282 } 282 }
283 return obj; 283 return obj;
284 } 284 }
285 JToken toJSON(Dictionary<string, global::LambdaCube.PipelineSchema.StreamType> v) { 285 public static JToken toJSON(Dictionary<string, global::LambdaCube.PipelineSchema.StreamType> v) {
286 var obj = new JObject(); 286 var obj = new JObject();
287 foreach (var i in v) { 287 foreach (var i in v) {
288 obj[i.Key] = toJSON(i.Value); 288 obj[i.Key] = toJSON(i.Value);