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 {
139139}
140140
141141int AtomicString::Find (bool (*CharacterMatchFunction)(char )) const {
142- // return JS_FindCharacterInAtom(runtime_, atom_, CharacterMatchFunction);
142+ // return JS_FindCharacterInAtom(runtime_, atom_, CharacterMatchFunction);
143143}
144144
145145int AtomicString::Find (bool (*CharacterMatchFunction)(uint16_t )) const {
146- // return JS_FindWCharacterInAtom(runtime_, atom_, CharacterMatchFunction);
146+ // return JS_FindWCharacterInAtom(runtime_, atom_, CharacterMatchFunction);
147147}
148148
149149std::string AtomicString::ToStdString (v8::Isolate* isolate) const {
Original file line number Diff line number Diff line change @@ -42,9 +42,7 @@ class AtomicString {
4242 AtomicString (v8::Isolate* isolate, const uint16_t * str, size_t length);
4343
4444 // 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>(); }
4846
4947 bool IsEmpty () const ;
5048 bool IsNull () const ;
Original file line number Diff line number Diff line change 88
99#if WEBF_V8_JS_ENGINE
1010
11-
1211#elif WEBF_QUICKJS_JS_ENGINE
1312#include " bindings/qjs/atomic_string.h"
1413#include " bindings/qjs/cppgc/gc_visitor.h"
You can’t perform that action at this time.
0 commit comments