+ /** Does this style permit mouse interaction?
+ (Some styling, such as P2's back-level yellow highlight for selected ways, should not respond
+ to mouse events.) */
+ public var interactive:Boolean=true;
+
+ /** Compiled SWFs for each eval. We keep it here, not in the property itself, so that we can retain typing for each property. */
+ public var evals:Object={};
+
+ /** TagValue assignments, e.g. { width: tag('lanes'); } */
+ public var tagvalues:Object={};
+
+ /** Make an exact copy of an object.
+ Used when merging cascading styles. (FIXME: this needs some benchmarking - it may be quicker to simply iterate over .properties,
+ copying each one. */