Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(536)

Unified Diff: lib/runtime/dart/mirrors.js

Issue 1879373004: Implement modular compilation (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/runtime/dart/math.js ('k') | lib/runtime/dart/svg.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/mirrors.js
diff --git a/lib/runtime/dart/mirrors.js b/lib/runtime/dart/mirrors.js
deleted file mode 100644
index 55172d2f4ea2965405f4fb38bb7080cce78a086f..0000000000000000000000000000000000000000
--- a/lib/runtime/dart/mirrors.js
+++ /dev/null
@@ -1,139 +0,0 @@
-dart_library.library('dart/mirrors', null, /* Imports */[
- 'dart/_runtime',
- 'dart/core'
-], /* Lazy imports */[
- 'dart/_js_mirrors'
-], function(exports, dart, core, _js_mirrors) {
- 'use strict';
- let dartx = dart.dartx;
- class MirrorSystem extends core.Object {
- findLibrary(libraryName) {
- return this.libraries[dartx.values][dartx.singleWhere](dart.fn(library => dart.equals(library.simpleName, libraryName), core.bool, [LibraryMirror]));
- }
- static getName(symbol) {
- return _js_mirrors.getName(symbol);
- }
- static getSymbol(name, library) {
- if (library === void 0) library = null;
- return _js_mirrors.getSymbol(name, library);
- }
- }
- dart.setSignature(MirrorSystem, {
- methods: () => ({findLibrary: [LibraryMirror, [core.Symbol]]}),
- statics: () => ({
- getName: [core.String, [core.Symbol]],
- getSymbol: [core.Symbol, [core.String], [LibraryMirror]]
- }),
- names: ['getName', 'getSymbol']
- });
- function currentMirrorSystem() {
- return dart.as(_js_mirrors.currentJsMirrorSystem, MirrorSystem);
- }
- dart.fn(currentMirrorSystem, MirrorSystem, []);
- function reflect(reflectee) {
- return _js_mirrors.reflect(reflectee);
- }
- dart.fn(reflect, () => dart.definiteFunctionType(InstanceMirror, [core.Object]));
- function reflectClass(key) {
- if (!dart.is(key, core.Type) || dart.equals(key, dart.dynamic)) {
- dart.throw(new core.ArgumentError(`${key} does not denote a class`));
- }
- let tm = reflectType(key);
- if (!dart.is(tm, ClassMirror)) {
- dart.throw(new core.ArgumentError(`${key} does not denote a class`));
- }
- return dart.as(dart.as(tm, ClassMirror).originalDeclaration, ClassMirror);
- }
- dart.fn(reflectClass, () => dart.definiteFunctionType(ClassMirror, [core.Type]));
- function reflectType(key) {
- if (dart.equals(key, dart.dynamic)) {
- return currentMirrorSystem().dynamicType;
- }
- return _js_mirrors.reflectType(key);
- }
- dart.fn(reflectType, () => dart.definiteFunctionType(TypeMirror, [core.Type]));
- class Mirror extends core.Object {}
- class IsolateMirror extends core.Object {}
- IsolateMirror[dart.implements] = () => [Mirror];
- class DeclarationMirror extends core.Object {}
- DeclarationMirror[dart.implements] = () => [Mirror];
- class ObjectMirror extends core.Object {}
- ObjectMirror[dart.implements] = () => [Mirror];
- class InstanceMirror extends core.Object {}
- InstanceMirror[dart.implements] = () => [ObjectMirror];
- class ClosureMirror extends core.Object {}
- ClosureMirror[dart.implements] = () => [InstanceMirror];
- class LibraryMirror extends core.Object {}
- LibraryMirror[dart.implements] = () => [DeclarationMirror, ObjectMirror];
- class LibraryDependencyMirror extends core.Object {}
- LibraryDependencyMirror[dart.implements] = () => [Mirror];
- class CombinatorMirror extends core.Object {}
- CombinatorMirror[dart.implements] = () => [Mirror];
- class TypeMirror extends core.Object {}
- TypeMirror[dart.implements] = () => [DeclarationMirror];
- class ClassMirror extends core.Object {}
- ClassMirror[dart.implements] = () => [TypeMirror, ObjectMirror];
- class FunctionTypeMirror extends core.Object {}
- FunctionTypeMirror[dart.implements] = () => [ClassMirror];
- class TypeVariableMirror extends TypeMirror {}
- class TypedefMirror extends core.Object {}
- TypedefMirror[dart.implements] = () => [TypeMirror];
- class MethodMirror extends core.Object {}
- MethodMirror[dart.implements] = () => [DeclarationMirror];
- class VariableMirror extends core.Object {}
- VariableMirror[dart.implements] = () => [DeclarationMirror];
- class ParameterMirror extends core.Object {}
- ParameterMirror[dart.implements] = () => [VariableMirror];
- class SourceLocation extends core.Object {}
- class Comment extends core.Object {
- Comment(text, trimmedText, isDocComment) {
- this.text = text;
- this.trimmedText = trimmedText;
- this.isDocComment = isDocComment;
- }
- }
- dart.setSignature(Comment, {
- constructors: () => ({Comment: [Comment, [core.String, core.String, core.bool]]})
- });
- class MirrorsUsed extends core.Object {
- MirrorsUsed(opts) {
- let symbols = opts && 'symbols' in opts ? opts.symbols : null;
- let targets = opts && 'targets' in opts ? opts.targets : null;
- let metaTargets = opts && 'metaTargets' in opts ? opts.metaTargets : null;
- let override = opts && 'override' in opts ? opts.override : null;
- this.symbols = symbols;
- this.targets = targets;
- this.metaTargets = metaTargets;
- this.override = override;
- }
- }
- dart.setSignature(MirrorsUsed, {
- constructors: () => ({MirrorsUsed: [MirrorsUsed, [], {symbols: dart.dynamic, targets: dart.dynamic, metaTargets: dart.dynamic, override: dart.dynamic}]})
- });
- // Exports:
- exports.MirrorSystem = MirrorSystem;
- exports.currentMirrorSystem = currentMirrorSystem;
- exports.reflect = reflect;
- exports.reflectClass = reflectClass;
- exports.reflectType = reflectType;
- exports.Mirror = Mirror;
- exports.IsolateMirror = IsolateMirror;
- exports.DeclarationMirror = DeclarationMirror;
- exports.ObjectMirror = ObjectMirror;
- exports.InstanceMirror = InstanceMirror;
- exports.ClosureMirror = ClosureMirror;
- exports.LibraryMirror = LibraryMirror;
- exports.LibraryDependencyMirror = LibraryDependencyMirror;
- exports.CombinatorMirror = CombinatorMirror;
- exports.TypeMirror = TypeMirror;
- exports.ClassMirror = ClassMirror;
- exports.FunctionTypeMirror = FunctionTypeMirror;
- exports.TypeVariableMirror = TypeVariableMirror;
- exports.TypedefMirror = TypedefMirror;
- exports.MethodMirror = MethodMirror;
- exports.VariableMirror = VariableMirror;
- exports.ParameterMirror = ParameterMirror;
- exports.SourceLocation = SourceLocation;
- exports.Comment = Comment;
- exports.MirrorsUsed = MirrorsUsed;
-});
« no previous file with comments | « lib/runtime/dart/math.js ('k') | lib/runtime/dart/svg.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698