diff options
author | Ray Clanan <rclanan@utopianconcept.com> | 2014-10-22 02:59:53 -0400 |
---|---|---|
committer | Ray Clanan <rclanan@utopianconcept.com> | 2014-10-23 21:33:32 -0400 |
commit | 85f746f9b97236efcb7663a57f18286f78d2f5b1 (patch) | |
tree | 6ca20db0da28ae7594b79ab8ce058d38ab4f02be /components/script/script_task.rs | |
parent | d1a1ac7e28d682c9e591d7fbd9f4414a12e827c5 (diff) | |
download | servo-85f746f9b97236efcb7663a57f18286f78d2f5b1.tar.gz servo-85f746f9b97236efcb7663a57f18286f78d2f5b1.zip |
Rename untraceable!() to no_jsmanaged_fields!(). References issue #3671
Diffstat (limited to 'components/script/script_task.rs')
-rw-r--r-- | components/script/script_task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/script_task.rs b/components/script/script_task.rs index 363b7ea75cf..f07fff94983 100644 --- a/components/script/script_task.rs +++ b/components/script/script_task.rs @@ -113,7 +113,7 @@ pub enum ScriptMsg { #[deriving(Clone)] pub struct ScriptChan(pub Sender<ScriptMsg>); -untraceable!(ScriptChan) +no_jsmanaged_fields!(ScriptChan) impl ScriptChan { /// Creates a new script chan. |