summaryrefslogtreecommitdiffstats
path: root/mojo/public/interfaces/bindings/tests/test_wtf_types.mojom
diff options
context:
space:
mode:
Diffstat (limited to 'mojo/public/interfaces/bindings/tests/test_wtf_types.mojom')
-rw-r--r--mojo/public/interfaces/bindings/tests/test_wtf_types.mojom6
1 files changed, 6 insertions, 0 deletions
diff --git a/mojo/public/interfaces/bindings/tests/test_wtf_types.mojom b/mojo/public/interfaces/bindings/tests/test_wtf_types.mojom
index f776309..9e79a18 100644
--- a/mojo/public/interfaces/bindings/tests/test_wtf_types.mojom
+++ b/mojo/public/interfaces/bindings/tests/test_wtf_types.mojom
@@ -7,8 +7,14 @@ module mojo.test;
struct TestWTFCodeGeneration {
string str;
string? nullable_str;
+ array<string> strs;
+ array<string?> nullable_strs;
+ array<array<int32>> arrays;
+ array<bool> bools;
+ array<handle<message_pipe>> handles;
};
interface TestWTF {
EchoString(string? str) => (string? str);
+ EchoStringArray(array<string?>? arr) => (array<string?>? arr);
};