Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
Retain references to Path objects
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelw committed Sep 3, 2013
1 parent 4a4a45a commit 94ec638
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/polymer-expressions.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,10 @@
if (!this.last)
return this.name;

return this.last.getPath() + '.' + this.name;
if (!this.path_)
this.path_ = Path.get(this.last.getPath() + '.' + this.name);

return this.path_;
},

valueFn: function() {
Expand Down

0 comments on commit 94ec638

Please sign in to comment.