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

Side by Side Diff: pkg/front_end/test/src/base/flat_buffers_test.dart

Issue 2875373002: Move flat_buffer and api_signature into front_end. (Closed)
Patch Set: Update summary format generator. Created 3 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library test.src.summary.flat_buffers_test;
6
7 import 'dart:typed_data'; 5 import 'dart:typed_data';
8 6
9 import 'package:analyzer/src/summary/flat_buffers.dart'; 7 import 'package:front_end/src/base/flat_buffers.dart';
10 import 'package:test/test.dart'; 8 import 'package:test/test.dart';
11 import 'package:test_reflective_loader/test_reflective_loader.dart'; 9 import 'package:test_reflective_loader/test_reflective_loader.dart';
12 10
13 main() { 11 main() {
14 defineReflectiveSuite(() { 12 defineReflectiveSuite(() {
15 defineReflectiveTests(BuilderTest); 13 defineReflectiveTests(BuilderTest);
16 }); 14 });
17 } 15 }
18 16
19 @reflectiveTest 17 @reflectiveTest
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 } 418 }
421 419
422 class TestPointReader extends TableReader<TestPointImpl> { 420 class TestPointReader extends TableReader<TestPointImpl> {
423 const TestPointReader(); 421 const TestPointReader();
424 422
425 @override 423 @override
426 TestPointImpl createObject(BufferContext object, int offset) { 424 TestPointImpl createObject(BufferContext object, int offset) {
427 return new TestPointImpl(object, offset); 425 return new TestPointImpl(object, offset);
428 } 426 }
429 } 427 }
OLDNEW
« no previous file with comments | « pkg/front_end/test/src/base/api_signature_test.dart ('k') | pkg/front_end/test/src/base/test_all.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698