File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -139,11 +139,11 @@ const uint16_t* AtomicString::Character16() const {
139
139
}
140
140
141
141
int AtomicString::Find (bool (*CharacterMatchFunction)(char )) const {
142
- // return JS_FindCharacterInAtom(runtime_, atom_, CharacterMatchFunction);
142
+ // return JS_FindCharacterInAtom(runtime_, atom_, CharacterMatchFunction);
143
143
}
144
144
145
145
int AtomicString::Find (bool (*CharacterMatchFunction)(uint16_t )) const {
146
- // return JS_FindWCharacterInAtom(runtime_, atom_, CharacterMatchFunction);
146
+ // return JS_FindWCharacterInAtom(runtime_, atom_, CharacterMatchFunction);
147
147
}
148
148
149
149
std::string AtomicString::ToStdString (v8::Isolate* isolate) const {
Original file line number Diff line number Diff line change @@ -42,9 +42,7 @@ class AtomicString {
42
42
AtomicString (v8::Isolate* isolate, const uint16_t * str, size_t length);
43
43
44
44
// Return the undefined string value from atom key.
45
- v8::Local<v8::Value> ToV8 (v8::Isolate* isolate) const {
46
- return string_.As <v8::Value>();
47
- }
45
+ v8::Local<v8::Value> ToV8 (v8::Isolate* isolate) const { return string_.As <v8::Value>(); }
48
46
49
47
bool IsEmpty () const ;
50
48
bool IsNull () const ;
Original file line number Diff line number Diff line change 8
8
9
9
#if WEBF_V8_JS_ENGINE
10
10
11
-
12
11
#elif WEBF_QUICKJS_JS_ENGINE
13
12
#include " bindings/qjs/atomic_string.h"
14
13
#include " bindings/qjs/cppgc/gc_visitor.h"
You can’t perform that action at this time.
0 commit comments