summaryrefslogtreecommitdiff
path: root/ddl/out/LambdaCube.TypeInfo2.hpp
diff options
context:
space:
mode:
authorPéter Diviánszky <divipp@gmail.com>2016-02-26 12:32:18 +0100
committerPéter Diviánszky <divipp@gmail.com>2016-02-26 12:32:18 +0100
commit5ea5e05a87c76d80194dbdfac177994aa870b783 (patch)
treebc1c27ab28fa248b343c13e949caa3ab9a3caaa9 /ddl/out/LambdaCube.TypeInfo2.hpp
parentc0d38528840c15998c02ef8e04a0a7b7be34ad5d (diff)
add Range type
Diffstat (limited to 'ddl/out/LambdaCube.TypeInfo2.hpp')
-rw-r--r--ddl/out/LambdaCube.TypeInfo2.hpp17
1 files changed, 15 insertions, 2 deletions
diff --git a/ddl/out/LambdaCube.TypeInfo2.hpp b/ddl/out/LambdaCube.TypeInfo2.hpp
index cffe5ea..b5c16d7 100644
--- a/ddl/out/LambdaCube.TypeInfo2.hpp
+++ b/ddl/out/LambdaCube.TypeInfo2.hpp
@@ -1,5 +1,5 @@
1// generated file, do not modify! 1// generated file, do not modify!
2// 2016-02-26T10:42:57.376331000000Z 2// 2016-02-26T11:29:11.823283000000Z
3 3
4#ifndef HEADER_LambdaCube.TypeInfo_H 4#ifndef HEADER_LambdaCube.TypeInfo_H
5#define HEADER_LambdaCube.TypeInfo_H 5#define HEADER_LambdaCube.TypeInfo_H
@@ -9,12 +9,25 @@
9#include "LambdaCube.IR.hpp" 9#include "LambdaCube.IR.hpp"
10 10
11namespace data { 11namespace data {
12 class TypeInfo { 12 class Range {
13 public: 13 public:
14 Int startLine; 14 Int startLine;
15 Int startColumn; 15 Int startColumn;
16 Int endLine; 16 Int endLine;
17 Int endColumn; 17 Int endColumn;
18 };
19}
20class Range {
21public:
22 enum class tag {
23 Range
24 } tag;
25 std::shared_ptr<data::Range> Range;
26};
27namespace data {
28 class TypeInfo {
29 public:
30 std::shared_ptr<::Range> range;
18 String text; 31 String text;
19 }; 32 };
20} 33}