From af1b95217bf63defab5dcbb6e447aeb74daf56a0 Mon Sep 17 00:00:00 2001 From: bmeurer Date: Tue, 1 Sep 2015 04:27:49 -0700 Subject: [PATCH] [runtime] Remove unused TO_NUMBER and TO_STRING functions. R=mvstanton@chromium.org Review URL: https://codereview.chromium.org/1304363012 Cr-Commit-Position: refs/heads/master@{#30507} --- src/runtime.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/runtime.js b/src/runtime.js index 231e83283..8063a790e 100644 --- a/src/runtime.js +++ b/src/runtime.js @@ -605,18 +605,6 @@ function STACK_OVERFLOW(length) { } -// Convert the receiver to a number - forward to ToNumber. -function TO_NUMBER() { - return %to_number_fun(this); -} - - -// Convert the receiver to a string - forward to ToString. -function TO_STRING() { - return %to_string_fun(this); -} - - /* ------------------------------------- - - - C o n v e r s i o n s - - - ------------------------------------- -- 2.34.1