Rename mappedBy to map.

Retain a deprecated mappedBy for now.
Change return type of mappedBy, skip and take on List to Iterable.

BUG= http://dartbug.com/8063
BUG= http://dartbug.com/8064
BUG= http://dartbug.com/6739
BUG= http://dartbug.com/7982

Review URL: https://codereview.chromium.org//12086062

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/yaml@17899 260f80e4-7a28-3924-810f-c04153c831b5
4 files changed
tree: ac151bbb0d1151072f675db4b79384a10d0711ca
  1. lib/
  2. test/
  3. pubspec.yaml
  4. README.md
README.md

A parser for YAML.

Use loadYaml to load a single document, or loadYamlStream to load a stream of documents. For example:

import 'package:yaml/yaml.dart';
main() {
  var doc = loadYaml("YAML: YAML Ain't Markup Language");
  print(doc['YAML']);
}

This library currently doesn't support dumping to YAML. You should use stringify from dart:json instead:

import 'dart:json' as json;
import 'package:yaml/yaml.dart';
main() {
  var doc = loadYaml("YAML: YAML Ain't Markup Language");
  print(json.stringify(doc));
}

The source code for this package is at http://code.google.com/p/dart. Please file issues at http://dartbug.com. Other questions or comments can be directed to the Dart mailing list at mailto:misc@dartlang.org.