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

Unified Diff: pkg/docgen/lib/docgen.dart

Issue 22488003: Changed qualifiedname to qualifiedName and commentfrom to commentFrom (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/docgen/lib/docgen.dart
diff --git a/pkg/docgen/lib/docgen.dart b/pkg/docgen/lib/docgen.dart
index 4e56fc4dcf0e08496beefb8f38e850172a37592a..4fab37f6b19bc285c587b2d4ebf1aeaac8771807 100644
--- a/pkg/docgen/lib/docgen.dart
+++ b/pkg/docgen/lib/docgen.dart
@@ -545,7 +545,7 @@ class Library extends Indexable {
/// Generates a map describing the [Library] object.
Map toMap() => {
'name': name,
- 'qualifiedname': qualifiedName,
+ 'qualifiedName': qualifiedName,
'comment': comment,
'variables': recurseMap(variables),
'functions': functions.toMap(),
@@ -670,16 +670,16 @@ class Class extends Indexable {
/// Generates a map describing the [Class] object.
Map toMap() => {
'name': name,
- 'qualifiedname': qualifiedName,
+ 'qualifiedName': qualifiedName,
'comment': comment,
'superclass': validSuperclass(),
'implements': interfaces.where(_isVisible)
.map((e) => e.qualifiedName).toList(),
'subclass': subclasses.toList(),
'variables': recurseMap(variables),
- 'inheritedvariables': recurseMap(inheritedVariables),
+ 'inheritedVariables': recurseMap(inheritedVariables),
'methods': methods.toMap(),
- 'inheritedmethods': inheritedMethods.toMap(),
+ 'inheritedMethods': inheritedMethods.toMap(),
'annotations': annotations.map((a) => a.toMap()).toList(),
'generics': recurseMap(generics)
};
@@ -766,7 +766,7 @@ class Typedef extends Indexable {
Map toMap() => {
'name': name,
- 'qualifiedname': qualifiedName,
+ 'qualifiedName': qualifiedName,
'comment': comment,
'return': returnType,
'parameters': recurseMap(parameters),
@@ -795,7 +795,7 @@ class Variable extends Indexable {
/// Generates a map describing the [Variable] object.
Map toMap() => {
'name': name,
- 'qualifiedname': qualifiedName,
+ 'qualifiedName': qualifiedName,
'comment': comment,
'final': isFinal.toString(),
'static': isStatic.toString(),
@@ -843,9 +843,9 @@ class Method extends Indexable {
/// Generates a map describing the [Method] object.
Map toMap() => {
'name': name,
- 'qualifiedname': qualifiedName,
+ 'qualifiedName': qualifiedName,
'comment': comment,
- 'commentfrom': commentInheritedFrom,
+ 'commentFrom': commentInheritedFrom,
'static': isStatic.toString(),
'abstract': isAbstract.toString(),
'constant': isConst.toString(),
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698