Package com.google.dart.engine.element

Examples of com.google.dart.engine.element.FieldFormalParameterElement


      recordRelationship(element, IndexConstants.IS_REFERENCED_BY, location);
    } else if (element instanceof FieldElement) {
      location = getLocationWithInitializerType(node, location);
      recordRelationship(element, IndexConstants.IS_REFERENCED_BY, location);
    } else if (element instanceof FieldFormalParameterElement) {
      FieldFormalParameterElement fieldParameter = (FieldFormalParameterElement) element;
      FieldElement field = fieldParameter.getField();
      recordRelationship(field, IndexConstants.IS_REFERENCED_BY_QUALIFIED, location);
    } else if (element instanceof PrefixElement) {
      recordImportElementReferenceWithPrefix(node);
    } else if (element instanceof PropertyAccessorElement || element instanceof MethodElement) {
      location = getLocationWithTypeAssignedToField(node, element, location);
View Full Code Here

TOP

Related Classes of com.google.dart.engine.element.FieldFormalParameterElement

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.