summaryrefslogtreecommitdiff
path: root/test/JsDeepConstructorTest.thrift
diff options
context:
space:
mode:
authorNobuaki Sukegawa <nsuke@apache.org>2016-03-19 23:55:06 +0900
committerNobuaki Sukegawa <nsuke@apache.org>2016-09-26 01:42:02 +0900
commita400c690eb4dc79b0dd89d7f159931487c856dae (patch)
tree5ff0fa7efa9d06b8155e28823f804163b1c83af0 /test/JsDeepConstructorTest.thrift
parent052abc39c60c54f9901993e76a81036b482ed6ba (diff)
downloadthrift-a400c690eb4dc79b0dd89d7f159931487c856dae.tar.gz
THRIFT-3748 Node.js Deserialization of lists of lists is broken
This closes #957
Diffstat (limited to 'test/JsDeepConstructorTest.thrift')
-rw-r--r--test/JsDeepConstructorTest.thrift2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/JsDeepConstructorTest.thrift b/test/JsDeepConstructorTest.thrift
index c2e23af91..ef5126fa4 100644
--- a/test/JsDeepConstructorTest.thrift
+++ b/test/JsDeepConstructorTest.thrift
@@ -9,6 +9,8 @@ struct Complex {
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
+ 7: list<list<string>> list_of_list_field
+ 8: list<list<list<string>>> list_of_list_of_list_field
}
struct ComplexList {