mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:42:43 +00:00 
			
		
		
		
	 50428ea8d2
			
		
	
	
		50428ea8d2
		
	
	
	
	
		
			
			Intrinsics, i.e. mostly constructor and prototype objects, but also things like empty and new object shape now live on a new heap-allocated JS::Intrinsics object, thus completing the long journey of taking all the magic away from the global object. This represents the Realm's [[Intrinsics]] slot in the spec and matches its existing [[GlobalObject]] / [[GlobalEnv]] slots in terms of architecture. In the majority of cases it should now be possibly to fully allocate a regular object without the global object existing, and in fact that's what we do now - the realm is allocated before the global object, and the intrinsics between both :^)
		
			
				
	
	
		
			94 lines
		
	
	
	
		
			2.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
	
		
			2.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, Matthew Olsson <mattco@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <LibJS/Runtime/Error.h>
 | |
| #include <LibJS/Runtime/GlobalObject.h>
 | |
| #include <LibJS/Runtime/RegExpConstructor.h>
 | |
| #include <LibJS/Runtime/RegExpObject.h>
 | |
| 
 | |
| namespace JS {
 | |
| 
 | |
| RegExpConstructor::RegExpConstructor(Realm& realm)
 | |
|     : NativeFunction(vm().names.RegExp.as_string(), *realm.intrinsics().function_prototype())
 | |
| {
 | |
| }
 | |
| 
 | |
| void RegExpConstructor::initialize(Realm& realm)
 | |
| {
 | |
|     auto& vm = this->vm();
 | |
|     NativeFunction::initialize(realm);
 | |
| 
 | |
|     // 22.2.4.1 RegExp.prototype, https://tc39.es/ecma262/#sec-regexp.prototype
 | |
|     define_direct_property(vm.names.prototype, realm.intrinsics().regexp_prototype(), 0);
 | |
| 
 | |
|     define_native_accessor(realm, *vm.well_known_symbol_species(), symbol_species_getter, {}, Attribute::Configurable);
 | |
| 
 | |
|     define_direct_property(vm.names.length, Value(2), Attribute::Configurable);
 | |
| }
 | |
| 
 | |
| // 22.2.3.1 RegExp ( pattern, flags ), https://tc39.es/ecma262/#sec-regexp-pattern-flags
 | |
| ThrowCompletionOr<Value> RegExpConstructor::call()
 | |
| {
 | |
|     auto& vm = this->vm();
 | |
| 
 | |
|     auto pattern = vm.argument(0);
 | |
|     auto flags = vm.argument(1);
 | |
| 
 | |
|     bool pattern_is_regexp = TRY(pattern.is_regexp(vm));
 | |
| 
 | |
|     if (pattern_is_regexp && flags.is_undefined()) {
 | |
|         auto pattern_constructor = TRY(pattern.as_object().get(vm.names.constructor));
 | |
|         if (same_value(this, pattern_constructor))
 | |
|             return pattern;
 | |
|     }
 | |
| 
 | |
|     return TRY(construct(*this));
 | |
| }
 | |
| 
 | |
| // 22.2.3.1 RegExp ( pattern, flags ), https://tc39.es/ecma262/#sec-regexp-pattern-flags
 | |
| ThrowCompletionOr<Object*> RegExpConstructor::construct(FunctionObject&)
 | |
| {
 | |
|     auto& vm = this->vm();
 | |
| 
 | |
|     auto pattern = vm.argument(0);
 | |
|     auto flags = vm.argument(1);
 | |
| 
 | |
|     bool pattern_is_regexp = TRY(pattern.is_regexp(vm));
 | |
| 
 | |
|     Value pattern_value;
 | |
|     Value flags_value;
 | |
| 
 | |
|     if (pattern.is_object() && is<RegExpObject>(pattern.as_object())) {
 | |
|         auto& regexp_pattern = static_cast<RegExpObject&>(pattern.as_object());
 | |
|         pattern_value = js_string(vm, regexp_pattern.pattern());
 | |
| 
 | |
|         if (flags.is_undefined())
 | |
|             flags_value = js_string(vm, regexp_pattern.flags());
 | |
|         else
 | |
|             flags_value = flags;
 | |
|     } else if (pattern_is_regexp) {
 | |
|         pattern_value = TRY(pattern.as_object().get(vm.names.source));
 | |
| 
 | |
|         if (flags.is_undefined()) {
 | |
|             flags_value = TRY(pattern.as_object().get(vm.names.flags));
 | |
|         } else {
 | |
|             flags_value = flags;
 | |
|         }
 | |
|     } else {
 | |
|         pattern_value = pattern;
 | |
|         flags_value = flags;
 | |
|     }
 | |
| 
 | |
|     return TRY(regexp_create(vm, pattern_value, flags_value));
 | |
| }
 | |
| 
 | |
| // 22.2.4.2 get RegExp [ @@species ], https://tc39.es/ecma262/#sec-get-regexp-@@species
 | |
| JS_DEFINE_NATIVE_FUNCTION(RegExpConstructor::symbol_species_getter)
 | |
| {
 | |
|     return vm.this_value();
 | |
| }
 | |
| 
 | |
| }
 |