summaryrefslogtreecommitdiff
path: root/test/JsDeepConstructorTest.thrift
diff options
context:
space:
mode:
authorHenrique Mendonça <henrique@apache.org>2015-06-01 23:23:22 +1000
committerHenrique Mendonça <henrique@apache.org>2015-06-01 23:23:22 +1000
commitc0e4a8dc07402a03f8627608fbcb84affca200c9 (patch)
tree07c984a6c2d73f363e0725a8da356797cb9ed4b3 /test/JsDeepConstructorTest.thrift
parentbbd6fd777319773b45b258b3ec9e49516a2ce4aa (diff)
downloadthrift-c0e4a8dc07402a03f8627608fbcb84affca200c9.tar.gz
Revert "THRIFT-3122 Javascript struct constructor should properly initialize struct and container members from plain js arguments"
This reverts commit 1568aef7d499153469131449ec682998598f0d3c.
Diffstat (limited to 'test/JsDeepConstructorTest.thrift')
-rw-r--r--test/JsDeepConstructorTest.thrift12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/JsDeepConstructorTest.thrift b/test/JsDeepConstructorTest.thrift
deleted file mode 100644
index 9150854b2..000000000
--- a/test/JsDeepConstructorTest.thrift
+++ /dev/null
@@ -1,12 +0,0 @@
-struct Simple {
- 1: string value
-}
-
-struct Complex {
- 1: Simple struct_field
- 2: list<Simple> struct_list_field
- 3: set<Simple> struct_set_field
- 4: map<string,Simple> struct_map_field
- 5: list<set<map<string,list<Simple>>>> struct_nested_containers_field
- 6: map<string, list<map<string,Simple>> > struct_nested_containers_field2
-}