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

Unified Diff: pkg/docgen/lib/src/models/model_helpers.dart

Issue 763993002: Extract BuilderContext from ASTEmitter (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/compiler/lib/src/tree_ir/tree_ir_nodes.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/docgen/lib/src/models/model_helpers.dart
diff --git a/pkg/docgen/lib/src/models/model_helpers.dart b/pkg/docgen/lib/src/models/model_helpers.dart
index 526ab4aca58ce95dff5faf9fc97d1b2642f87905..3c4c430464ed9539560eca995d7c22cd7efff68f 100644
--- a/pkg/docgen/lib/src/models/model_helpers.dart
+++ b/pkg/docgen/lib/src/models/model_helpers.dart
@@ -96,74 +96,74 @@ class AnnotationCreator
@override
Annotation visitBinary(BinaryConstantExpression exp,
- [AnnotationInfo context]) {
+ AnnotationInfo context) {
return null;
}
@override
Annotation visitConcatenate(ConcatenateConstantExpression exp,
- [AnnotationInfo context]) {
+ AnnotationInfo context) {
return null;
}
@override
Annotation visitConditional(ConditionalConstantExpression exp,
- [AnnotationInfo context]) {
+ AnnotationInfo context) {
return null;
}
@override
Annotation visitConstructed(ConstructedConstantExpresssion exp,
- [AnnotationInfo context]) {
+ AnnotationInfo context) {
return createAnnotation(exp.target, context,
exp.arguments.map((a) => a.getText()).toList());
}
@override
Annotation visitFunction(FunctionConstantExpression exp,
- [AnnotationInfo context]) {
+ AnnotationInfo context) {
return createAnnotation(exp.element, context);
}
@override
Annotation visitList(ListConstantExpression exp,
- [AnnotationInfo context]) {
+ AnnotationInfo context) {
return null;
}
@override
Annotation visitMap(MapConstantExpression exp,
- [AnnotationInfo context]) {
+ AnnotationInfo context) {
return null;
}
@override
Annotation visitPrimitive(PrimitiveConstantExpression exp,
- [AnnotationInfo context]) {
+ AnnotationInfo context) {
return null;
}
@override
Annotation visitSymbol(SymbolConstantExpression exp,
- [AnnotationInfo context]) {
+ AnnotationInfo context) {
return null;
}
@override
Annotation visitType(TypeConstantExpression exp,
- [AnnotationInfo context]) {
+ AnnotationInfo context) {
return null;
}
@override
Annotation visitUnary(UnaryConstantExpression exp,
- [AnnotationInfo context]) {
+ AnnotationInfo context) {
return null;
}
@override
Annotation visitVariable(VariableConstantExpression exp,
- [AnnotationInfo context]) {
+ AnnotationInfo context) {
return createAnnotation(exp.element, context);
}
}
« no previous file with comments | « pkg/compiler/lib/src/tree_ir/tree_ir_nodes.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698