Package com.google.dart.engine.utilities.ast

Examples of com.google.dart.engine.utilities.ast.IncrementalAstCloner


      // We ended up re-parsing the whole structure, so there's no need for a copy.
      ResolutionCopier.copyResolutionData(oldNode, newNode);
      return (E) newNode;
    }
    ResolutionCopier.copyResolutionData(oldNode, newNode);
    IncrementalAstCloner cloner = new IncrementalAstCloner(oldNode, newNode, tokenMap);
    return (E) originalStructure.accept(cloner);
  }
View Full Code Here

TOP

Related Classes of com.google.dart.engine.utilities.ast.IncrementalAstCloner

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.