blob: 05730a326b74a75d28f8375a8f76f40dd2b69dec [file] [log] [blame]
// Copyright (c) 2016, 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.
part of mocks;
class UnknownObjectRefMock implements M.UnknownObjectRef {
final String id;
final String vmType;
const UnknownObjectRefMock(
{this.id: 'literal-token-id', this.vmType: 'vmType'});
}