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

Unified Diff: pkg/analysis_server/test/index/store/typed_mocks.dart

Issue 365193004: Move Index and IndexStore implementations into Engine. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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
Index: pkg/analysis_server/test/index/store/typed_mocks.dart
diff --git a/pkg/analysis_server/test/index/store/typed_mocks.dart b/pkg/analysis_server/test/index/store/typed_mocks.dart
deleted file mode 100644
index 25303042eb5b30d7bd92216cfb70ea703d32986d..0000000000000000000000000000000000000000
--- a/pkg/analysis_server/test/index/store/typed_mocks.dart
+++ /dev/null
@@ -1,143 +0,0 @@
-// Copyright (c) 2014, 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.
-
-library test.index.store.typed_mocks;
-
-import 'package:analysis_server/src/index/store/codec.dart';
-import 'package:analyzer/src/generated/element.dart';
-import 'package:analyzer/src/generated/engine.dart';
-import 'package:analyzer/src/generated/index.dart';
-import 'package:analyzer/src/generated/source.dart';
-import 'package:typed_mock/typed_mock.dart';
-
-
-class MockAnalysisContext extends TypedMock implements AnalysisContext {
- String _name;
- MockAnalysisContext(this._name);
- noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
- String toString() => _name;
-}
-
-
-class MockClassElement extends TypedMock implements ClassElement {
- noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
-}
-
-
-class MockCompilationUnitElement extends TypedMock implements
- CompilationUnitElement {
- noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
-}
-
-
-class MockConstructorElement extends TypedMock implements ConstructorElement {
- noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
-}
-
-
-class MockContextCodec extends TypedMock implements ContextCodec {
- noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
-}
-
-
-class MockDartType extends StringTypedMock implements DartType {
- MockDartType([String toString]) : super(toString);
- noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
-}
-
-
-class MockElement extends TypedMock implements Element {
- String _name;
- MockElement([this._name = '<element>']);
- noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
- String toString() => _name;
-}
-
-
-class MockElementCodec extends TypedMock implements ElementCodec {
- noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
-}
-
-
-class MockFieldElement extends TypedMock implements FieldElement {
- noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
-}
-
-
-class MockHtmlElement extends TypedMock implements HtmlElement {
- noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
-}
-
-
-class MockInstrumentedAnalysisContextImpl extends TypedMock implements
- InstrumentedAnalysisContextImpl {
- noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
-}
-
-
-class MockLibraryElement extends TypedMock implements LibraryElement {
- noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
-}
-
-
-class MockLocation extends TypedMock implements Location {
- noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
-}
-
-
-class MockLogger extends TypedMock implements Logger {
- noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
-}
-
-
-class MockMethodElement extends TypedMock implements MethodElement {
- noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
-}
-
-
-class MockParameterElement extends StringTypedMock implements ParameterElement {
- MockParameterElement([String toString]) : super(toString);
- noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
-}
-
-
-class MockPropertyAccessorElement extends TypedMock implements
- PropertyAccessorElement {
- noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
-}
-
-
-class MockRelationshipCodec extends TypedMock implements RelationshipCodec {
- noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
-}
-
-
-class MockSource extends TypedMock implements Source {
- String _name;
- MockSource(this._name);
- noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
- String toString() => _name;
-}
-
-
-class SourceMock extends TypedMock implements Source {
- noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
-}
-
-
-class StringTypedMock extends TypedMock {
- String _toString;
-
- StringTypedMock(this._toString);
-
- noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
-
- @override
- String toString() {
- if (_toString != null) {
- return _toString;
- }
- return super.toString();
- }
-}

Powered by Google App Engine
This is Rietveld 408576698