blob: 17e1de89346270d54302006fca85c7046ca48f8d [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.
// @dart = 2.5
part of _js_helper;
/// Marks a class as native and defines its JavaScript name(s).
class Native {
final String name;
const Native(this.name);
}
class _Patch {
const _Patch();
}
/// Annotation that marks the declaration as a patch.
const _Patch patch = const _Patch();