Package com.google.dart.engine.internal.element.polymer

Examples of com.google.dart.engine.internal.element.polymer.PolymerTagDartElementImpl


      Expression nameExpression = arguments.get(0);
      if (nameExpression instanceof SimpleStringLiteral) {
        SimpleStringLiteral nameLiteral = (SimpleStringLiteral) nameExpression;
        String name = nameLiteral.getValue();
        int nameOffset = nameLiteral.getValueOffset();
        PolymerTagDartElementImpl element = new PolymerTagDartElementImpl(
            name,
            nameOffset,
            classElement);
        classElement.addToolkitObjects(element);
        nameLiteral.setToolkitElement(element);
View Full Code Here

TOP

Related Classes of com.google.dart.engine.internal.element.polymer.PolymerTagDartElementImpl

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.