blob: 2fa843a20175cf2096e2c383414086efc9a1d582 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'bitfield.dart' as bitfield;
/// The dart:html implementation of [bitfield.kMaxUnsignedSMI].
const int kMaxUnsignedSMI = 0;
/// The dart:html implementation of [bitfield.Bitfield].
class BitField<T extends dynamic> implements bitfield.BitField<T> {
/// The dart:html implementation of [bitfield.Bitfield].
// Can remove when we have metaclasses.
// ignore: avoid_unused_constructor_parameters
BitField(int length);
/// The dart:html implementation of [bitfield.Bitfield.filled].
// Can remove when we have metaclasses.
// ignore: avoid_unused_constructor_parameters
BitField.filled(int length, bool value);
@override
bool operator [](T index) {
throw UnsupportedError('Not supported when compiling to JavaScript');
}
@override
void operator []=(T index, bool value) {
throw UnsupportedError('Not supported when compiling to JavaScript');
}
@override
void reset([ bool value = false ]) {
throw UnsupportedError('Not supported when compiling to JavaScript');
}
}