Examples of newTempName_()


Examples of st.gravel.support.compiler.ast.LiteralSendInliner.newTempName_()

  public String newTempName_for_(final String _argName, final Node _node) {
    final LiteralSendInliner _lsi;
    _lsi = LiteralSendInliner.factory.basicNew();
    _lsi.initializeRoot_(_node);
    return _lsi.newTempName_(_argName);
  }

  public BlockInliner postCopy() {
    return this;
  }
View Full Code Here

Examples of st.gravel.support.compiler.ast.LiteralSendInliner.newTempName_()

      _lsi.initializeRoot_(_aNode);
      _lsi.addUsedNode_(_replacementNode);
      _res = _replacementNode;
      for (final String _oldName : _localNames) {
        final String _newName;
        _newName = _lsi.newTempName_(_oldName);
        _res = ((Expression) LocalDefinedVariableRenamer.factory.in_rename_to_(_res, _oldName, _newName));
      }
      return _res;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.