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

Side by Side Diff: pkg/source_maps/README.md

Issue 12207008: Move source maps package to the dart repo, so it can be used by other internal (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: updates Created 7 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « pkg/pkg.status ('k') | pkg/source_maps/lib/builder.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 Source Maps
2 ===========
3
4 This project implements a Dart pub package to work with source maps. The
5 implementation is based on the [source map version 3 spec][spec] which was
6 originated from the [Closure Compiler][closure] and has been implemented in
7 Chrome and Firefox.
8
9 In this package we provide:
10 * Data types defining file locations and spans: these are not part of the
11 original source map specification. These data types are great for tracking
12 source locations on source maps, but they can also be used by tools to
13 reporting useful error messages that include on source locations.
14 * A builder that creates a source map programatically and produces the encoded
15 source map format.
16 * A parser that reads the source map format and provides APIs to read the
17 mapping information.
18
19 Some upcoming features we are planning to add to this package are:
20 * A printer that lets you generate code, but record source map information in
21 the process.
22 * A tool that can compose source maps together. This would be useful for
23 instance, if you have 2 tools that produce source maps and you call one with
24 the result of the other.
25
26 [closure]: http://code.google.com/p/closure-compiler/wiki/SourceMaps
27 [spec]: https://docs.google.com/a/google.com/document/d/1U1RGAehQwRypUTovF1KRlpi OFze0b-_2gc6fAH0KY0k/edit
OLDNEW
« no previous file with comments | « pkg/pkg.status ('k') | pkg/source_maps/lib/builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698