| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 %_SetValueOf(this, value); | 39 %_SetValueOf(this, value); |
| 40 } else { | 40 } else { |
| 41 return value; | 41 return value; |
| 42 } | 42 } |
| 43 }); | 43 }); |
| 44 | 44 |
| 45 %FunctionSetPrototype($String, new $String()); | 45 %FunctionSetPrototype($String, new $String()); |
| 46 | 46 |
| 47 // ECMA-262 section 15.5.4.2 | 47 // ECMA-262 section 15.5.4.2 |
| 48 function StringToString() { | 48 function StringToString() { |
| 49 if (!IS_STRING(this) && %ClassOf(this) !== 'String') | 49 if (!IS_STRING(this) && !%IsStringClass(this)) |
| 50 throw new $TypeError('String.prototype.toString is not generic'); | 50 throw new $TypeError('String.prototype.toString is not generic'); |
| 51 return %_ValueOf(this); | 51 return %_ValueOf(this); |
| 52 } | 52 } |
| 53 | 53 |
| 54 | 54 |
| 55 // ECMA-262 section 15.5.4.3 | 55 // ECMA-262 section 15.5.4.3 |
| 56 function StringValueOf() { | 56 function StringValueOf() { |
| 57 if (!IS_STRING(this) && %ClassOf(this) !== 'String') | 57 if (!IS_STRING(this) && !%IsStringClass(this)) |
| 58 throw new $TypeError('String.prototype.valueOf is not generic'); | 58 throw new $TypeError('String.prototype.valueOf is not generic'); |
| 59 return %_ValueOf(this); | 59 return %_ValueOf(this); |
| 60 } | 60 } |
| 61 | 61 |
| 62 | 62 |
| 63 // ECMA-262, section 15.5.4.4 | 63 // ECMA-262, section 15.5.4.4 |
| 64 function StringCharAt(pos) { | 64 function StringCharAt(pos) { |
| 65 var subject = ToString(this); | 65 var subject = ToString(this); |
| 66 var index = TO_INTEGER(pos); | 66 var index = TO_INTEGER(pos); |
| 67 if (index >= subject.length || index < 0) return ""; | 67 if (index >= subject.length || index < 0) return ""; |
| (...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 825 "italics", StringItalics, | 825 "italics", StringItalics, |
| 826 "small", StringSmall, | 826 "small", StringSmall, |
| 827 "strike", StringStrike, | 827 "strike", StringStrike, |
| 828 "sub", StringSub, | 828 "sub", StringSub, |
| 829 "sup", StringSup | 829 "sup", StringSup |
| 830 )); | 830 )); |
| 831 } | 831 } |
| 832 | 832 |
| 833 | 833 |
| 834 SetupString(); | 834 SetupString(); |
| OLD | NEW |