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

Side by Side Diff: sdk/lib/scalarlist/scalarlist.dart

Issue 11419032: Switch libraries to using new tags. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated to tip of tree. Changed library names to dart.x Created 8 years 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 | Annotate | Revision Log
« no previous file with comments | « sdk/lib/scalarlist/byte_arrays.dart ('k') | sdk/lib/uri/encode_decode.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 /** 5 /**
6 * The scalarlist library is used for Dart server applications, 6 * The scalarlist library is used for Dart server applications,
7 * which run on a stand-alone Dart VM from the command line. 7 * which run on a stand-alone Dart VM from the command line.
8 * *This library does not work in browser based applications.* 8 * *This library does not work in browser based applications.*
9 * 9 *
10 * This library allows you to work with arrays of scalar values 10 * This library allows you to work with arrays of scalar values
11 * of various sizes. 11 * of various sizes.
12 */ 12 */
13 #library('dart:scalarlist'); 13 library dart.scalarlist;
14 14
15 // TODO(ager): Inline the contents of byte_arrays.dart here and get 15 // TODO(ager): Inline the contents of byte_arrays.dart here and get
16 // rid of scalarlist_sources.gypi when the VM understands normal 16 // rid of scalarlist_sources.gypi when the VM understands normal
17 // library structure for builtin libraries. 17 // library structure for builtin libraries.
18 #source('byte_arrays.dart'); 18 part 'byte_arrays.dart';
OLDNEW
« no previous file with comments | « sdk/lib/scalarlist/byte_arrays.dart ('k') | sdk/lib/uri/encode_decode.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698