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

Unified Diff: pkg/analysis_server/lib/src/computer/computer_outline.dart

Issue 969113002: Reformat (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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
Index: pkg/analysis_server/lib/src/computer/computer_outline.dart
diff --git a/pkg/analysis_server/lib/src/computer/computer_outline.dart b/pkg/analysis_server/lib/src/computer/computer_outline.dart
index 8efd18e078b09efc13883414088285e2e33df468..c8351dff1a8e8b000335d5d1de7a1c01a8b76e83 100644
--- a/pkg/analysis_server/lib/src/computer/computer_outline.dart
+++ b/pkg/analysis_server/lib/src/computer/computer_outline.dart
@@ -10,7 +10,6 @@ import 'package:analyzer/src/generated/ast.dart';
import 'package:analyzer/src/generated/element.dart' as engine;
import 'package:analyzer/src/generated/source.dart';
-
/**
* A computer for [CompilationUnit] outline.
*/
@@ -43,12 +42,8 @@ class DartUnitOutlineComputer {
String fieldTypeName =
fieldType != null ? fieldType.toSource() : '';
for (VariableDeclaration field in fields.variables) {
- classContents.add(
- _newVariableOutline(
- fieldTypeName,
- ElementKind.FIELD,
- field,
- fieldDeclaration.isStatic));
+ classContents.add(_newVariableOutline(fieldTypeName,
+ ElementKind.FIELD, field, fieldDeclaration.isStatic));
}
}
}
@@ -74,12 +69,8 @@ class DartUnitOutlineComputer {
TypeName fieldType = fields.type;
String fieldTypeName = fieldType != null ? fieldType.toSource() : '';
for (VariableDeclaration field in fields.variables) {
- unitContents.add(
- _newVariableOutline(
- fieldTypeName,
- ElementKind.TOP_LEVEL_VARIABLE,
- field,
- false));
+ unitContents.add(_newVariableOutline(
+ fieldTypeName, ElementKind.TOP_LEVEL_VARIABLE, field, false));
}
}
}
@@ -166,23 +157,17 @@ class DartUnitOutlineComputer {
return new _SourceRegion(prevSiblingEnd, endOffset - prevSiblingEnd);
}
- Outline _newClassOutline(ClassDeclaration classDeclaration,
- List<Outline> classContents) {
+ Outline _newClassOutline(
+ ClassDeclaration classDeclaration, List<Outline> classContents) {
SimpleIdentifier nameNode = classDeclaration.name;
String name = nameNode.name;
_SourceRegion sourceRegion = _getSourceRegion(classDeclaration);
- Element element = new Element(
- ElementKind.CLASS,
- name,
- Element.makeFlags(
+ Element element = new Element(ElementKind.CLASS, name, Element.makeFlags(
isPrivate: Identifier.isPrivateName(name),
isDeprecated: _isDeprecated(classDeclaration),
isAbstract: classDeclaration.isAbstract),
location: _getLocationNode(nameNode));
- return new Outline(
- element,
- sourceRegion.offset,
- sourceRegion.length,
+ return new Outline(element, sourceRegion.offset, sourceRegion.length,
children: nullIfEmpty(classContents));
}
@@ -190,13 +175,11 @@ class DartUnitOutlineComputer {
SimpleIdentifier nameNode = alias.name;
String name = nameNode.name;
_SourceRegion sourceRegion = _getSourceRegion(alias);
- Element element = new Element(
- ElementKind.CLASS_TYPE_ALIAS,
- name,
- Element.makeFlags(
- isPrivate: Identifier.isPrivateName(name),
- isDeprecated: _isDeprecated(alias),
- isAbstract: alias.isAbstract),
+ Element element = new Element(ElementKind.CLASS_TYPE_ALIAS, name, Element
+ .makeFlags(
+ isPrivate: Identifier.isPrivateName(name),
+ isDeprecated: _isDeprecated(alias),
+ isAbstract: alias.isAbstract),
location: _getLocationNode(nameNode));
return new Outline(element, sourceRegion.offset, sourceRegion.length);
}
@@ -218,19 +201,14 @@ class DartUnitOutlineComputer {
_SourceRegion sourceRegion = _getSourceRegion(constructor);
FormalParameterList parameters = constructor.parameters;
String parametersStr = parameters != null ? parameters.toSource() : '';
- Element element = new Element(
- ElementKind.CONSTRUCTOR,
- name,
- Element.makeFlags(
- isPrivate: isPrivate,
- isDeprecated: _isDeprecated(constructor)),
+ Element element = new Element(ElementKind.CONSTRUCTOR, name, Element
+ .makeFlags(
+ isPrivate: isPrivate, isDeprecated: _isDeprecated(constructor)),
location: _getLocationOffsetLength(offset, length),
parameters: parametersStr);
List<Outline> contents = _addLocalFunctionOutlines(constructor.body);
Outline outline = new Outline(
- element,
- sourceRegion.offset,
- sourceRegion.length,
+ element, sourceRegion.offset, sourceRegion.length,
children: nullIfEmpty(contents));
return outline;
}
@@ -239,12 +217,10 @@ class DartUnitOutlineComputer {
SimpleIdentifier nameNode = node.name;
String name = nameNode.name;
_SourceRegion sourceRegion = _getSourceRegion(node);
- Element element = new Element(
- ElementKind.ENUM_CONSTANT,
- name,
- Element.makeFlags(
- isPrivate: Identifier.isPrivateName(name),
- isDeprecated: _isDeprecated(node)),
+ Element element = new Element(ElementKind.ENUM_CONSTANT, name, Element
+ .makeFlags(
+ isPrivate: Identifier.isPrivateName(name),
+ isDeprecated: _isDeprecated(node)),
location: _getLocationNode(nameNode));
return new Outline(element, sourceRegion.offset, sourceRegion.length);
}
@@ -253,17 +229,11 @@ class DartUnitOutlineComputer {
SimpleIdentifier nameNode = node.name;
String name = nameNode.name;
_SourceRegion sourceRegion = _getSourceRegion(node);
- Element element = new Element(
- ElementKind.ENUM,
- name,
- Element.makeFlags(
+ Element element = new Element(ElementKind.ENUM, name, Element.makeFlags(
isPrivate: Identifier.isPrivateName(name),
isDeprecated: _isDeprecated(node)),
location: _getLocationNode(nameNode));
- return new Outline(
- element,
- sourceRegion.offset,
- sourceRegion.length,
+ return new Outline(element, sourceRegion.offset, sourceRegion.length,
children: nullIfEmpty(children));
}
@@ -284,10 +254,7 @@ class DartUnitOutlineComputer {
_SourceRegion sourceRegion = _getSourceRegion(function);
String parametersStr = parameters != null ? parameters.toSource() : '';
String returnTypeStr = returnType != null ? returnType.toSource() : '';
- Element element = new Element(
- kind,
- name,
- Element.makeFlags(
+ Element element = new Element(kind, name, Element.makeFlags(
isPrivate: Identifier.isPrivateName(name),
isDeprecated: _isDeprecated(function),
isStatic: isStatic),
@@ -296,9 +263,7 @@ class DartUnitOutlineComputer {
returnType: returnTypeStr);
List<Outline> contents = _addLocalFunctionOutlines(functionExpression.body);
Outline outline = new Outline(
- element,
- sourceRegion.offset,
- sourceRegion.length,
+ element, sourceRegion.offset, sourceRegion.length,
children: nullIfEmpty(contents));
return outline;
}
@@ -311,12 +276,10 @@ class DartUnitOutlineComputer {
FormalParameterList parameters = alias.parameters;
String parametersStr = parameters != null ? parameters.toSource() : '';
String returnTypeStr = returnType != null ? returnType.toSource() : '';
- Element element = new Element(
- ElementKind.FUNCTION_TYPE_ALIAS,
- name,
- Element.makeFlags(
- isPrivate: Identifier.isPrivateName(name),
- isDeprecated: _isDeprecated(alias)),
+ Element element = new Element(ElementKind.FUNCTION_TYPE_ALIAS, name, Element
+ .makeFlags(
+ isPrivate: Identifier.isPrivateName(name),
+ isDeprecated: _isDeprecated(alias)),
location: _getLocationNode(nameNode),
parameters: parametersStr,
returnType: returnTypeStr);
@@ -339,10 +302,7 @@ class DartUnitOutlineComputer {
_SourceRegion sourceRegion = _getSourceRegion(method);
String parametersStr = parameters != null ? parameters.toSource() : null;
String returnTypeStr = returnType != null ? returnType.toSource() : '';
- Element element = new Element(
- kind,
- name,
- Element.makeFlags(
+ Element element = new Element(kind, name, Element.makeFlags(
isPrivate: Identifier.isPrivateName(name),
isDeprecated: _isDeprecated(method),
isAbstract: method.isAbstract,
@@ -352,23 +312,16 @@ class DartUnitOutlineComputer {
returnType: returnTypeStr);
List<Outline> contents = _addLocalFunctionOutlines(method.body);
Outline outline = new Outline(
- element,
- sourceRegion.offset,
- sourceRegion.length,
+ element, sourceRegion.offset, sourceRegion.length,
children: nullIfEmpty(contents));
return outline;
}
Outline _newUnitOutline(List<Outline> unitContents) {
Element element = new Element(
- ElementKind.COMPILATION_UNIT,
- '<unit>',
- Element.makeFlags(),
+ ElementKind.COMPILATION_UNIT, '<unit>', Element.makeFlags(),
location: _getLocationNode(unit));
- return new Outline(
- element,
- unit.offset,
- unit.length,
+ return new Outline(element, unit.offset, unit.length,
children: nullIfEmpty(unitContents));
}
@@ -377,17 +330,13 @@ class DartUnitOutlineComputer {
SimpleIdentifier nameNode = variable.name;
String name = nameNode.name;
_SourceRegion sourceRegion = _getSourceRegion(variable);
- Element element = new Element(
- kind,
- name,
- Element.makeFlags(
+ Element element = new Element(kind, name, Element.makeFlags(
isPrivate: Identifier.isPrivateName(name),
isDeprecated: _isDeprecated(variable),
isStatic: isStatic,
isConst: variable.isConst,
isFinal: variable.isFinal),
- location: _getLocationNode(nameNode),
- returnType: typeName);
+ location: _getLocationNode(nameNode), returnType: typeName);
Outline outline =
new Outline(element, sourceRegion.offset, sourceRegion.length);
return outline;
@@ -402,7 +351,6 @@ class DartUnitOutlineComputer {
}
}
-
/**
* A visitor for building local function outlines.
*/
@@ -418,7 +366,6 @@ class _LocalFunctionOutlinesVisitor extends RecursiveAstVisitor {
}
}
-
/**
* A range of characters.
*/

Powered by Google App Engine
This is Rietveld 408576698