| 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 | 153 |
| 154 | 154 |
| 155 Handle<Script> Factory::NewScript(Handle<String> source) { | 155 Handle<Script> Factory::NewScript(Handle<String> source) { |
| 156 Handle<Script> script = Handle<Script>::cast(NewStruct(SCRIPT_TYPE)); | 156 Handle<Script> script = Handle<Script>::cast(NewStruct(SCRIPT_TYPE)); |
| 157 script->set_source(*source); | 157 script->set_source(*source); |
| 158 script->set_name(Heap::undefined_value()); | 158 script->set_name(Heap::undefined_value()); |
| 159 script->set_line_offset(Smi::FromInt(0)); | 159 script->set_line_offset(Smi::FromInt(0)); |
| 160 script->set_column_offset(Smi::FromInt(0)); | 160 script->set_column_offset(Smi::FromInt(0)); |
| 161 script->set_type(Smi::FromInt(SCRIPT_TYPE_NORMAL)); | 161 script->set_type(Smi::FromInt(SCRIPT_TYPE_NORMAL)); |
| 162 script->set_wrapper(*Factory::NewProxy(0, TENURED)); | 162 script->set_wrapper(*Factory::NewProxy(0, TENURED)); |
| 163 script->set_line_ends(Heap::undefined_value()); |
| 163 return script; | 164 return script; |
| 164 } | 165 } |
| 165 | 166 |
| 166 | 167 |
| 167 Handle<Proxy> Factory::NewProxy(Address addr, PretenureFlag pretenure) { | 168 Handle<Proxy> Factory::NewProxy(Address addr, PretenureFlag pretenure) { |
| 168 CALL_HEAP_FUNCTION(Heap::AllocateProxy(addr, pretenure), Proxy); | 169 CALL_HEAP_FUNCTION(Heap::AllocateProxy(addr, pretenure), Proxy); |
| 169 } | 170 } |
| 170 | 171 |
| 171 | 172 |
| 172 Handle<Proxy> Factory::NewProxy(const AccessorDescriptor* desc) { | 173 Handle<Proxy> Factory::NewProxy(const AccessorDescriptor* desc) { |
| (...skipping 687 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 860 Execution::ConfigureInstance(instance, | 861 Execution::ConfigureInstance(instance, |
| 861 instance_template, | 862 instance_template, |
| 862 pending_exception); | 863 pending_exception); |
| 863 } else { | 864 } else { |
| 864 *pending_exception = false; | 865 *pending_exception = false; |
| 865 } | 866 } |
| 866 } | 867 } |
| 867 | 868 |
| 868 | 869 |
| 869 } } // namespace v8::internal | 870 } } // namespace v8::internal |
| OLD | NEW |