blob: 071dc4b57b6ab393e8212d527f863403d18cd68f [file] [log] [blame]
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// Test errors thrown by WasmImports.
import "package:expect/expect.dart";
import "dart:wasm";
import "dart:typed_data";
void main() {
var imp = WasmImports();
Expect.throwsArgumentError(() => imp.addGlobal<int>("env", "a", 1, true));
Expect.throwsArgumentError(() => imp.addGlobal<double>("env", "b", 2, true));
Expect.throwsArgumentError(() => imp.addGlobal<dynamic>("env", "c", 3, true));
}