blob: 90384a184e03ad4275b3c66d7950825631b1c747 [file] [log] [blame]
// Copyright (c) 2013, 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.
/// @assertion
/// Float64List.view(
/// ByteBuffer buffer, [
/// int byteOffset = 0,
/// int length
/// ])
/// ...
/// Changes in the [Float64List] will be visible in the byte buffer and vice
/// versa.
/// @description Checks that changes in the [Float64List] will be visible in
/// the byte buffer and vice versa.
/// @author msyabro
import "dart:typed_data";
import "../../../Utils/expect.dart";
main() {
var tmp = new Float64List.fromList([0.0, 0.0, 0.0]);
var byteBuffer = tmp.buffer;
var l = new Float64List.view(byteBuffer, 0, 3);
tmp[0] = 1.0;
Expect.equals(tmp[0], l[0]);
l[1] = 2.0;
Expect.equals(l[1], tmp[1]);
}