From: bmeurer Date: Tue, 1 Sep 2015 11:27:49 +0000 (-0700) Subject: [runtime] Remove unused TO_NUMBER and TO_STRING functions. X-Git-Tag: upstream/4.7.83~533 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=af1b95217bf63defab5dcbb6e447aeb74daf56a0;p=platform%2Fupstream%2Fv8.git [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} --- 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 - - - -------------------------------------