Yonggang Luo
Yonggang Luo
> In the restart debug case you are expecting a restart, it doesn't matter if it fails why it fails. A successful close does not guarantee that the restart will...
Does that means only ONE jerryscript engine can exist in a single program?
> According to the proposal: > > > Returns: a Temporal.Instant object representing the current system time. > > I'm going to refer to [my previous comment](https://github.com/jerryscript-project/jerryscript/pull/4907#discussion_r784985865) on this topic....
For implement napi_value to object ``` inline jerry_value_t AS_JERRY_OBJECT(napi_value nvalue) { jerry_value_t val = (jerry_value_t)(uintptr_t) nvalue; if (jerry_value_is_error(val)) { jerry_value_t err_val = jerry_get_value_from_error(val, false); jerry_release_value(err_val); return err_val; } return val;...
> Side note on the following code: > > ``` > jerry_value_t err_val = jerry_get_value_from_error(val, false); > jerry_release_value(err_val); > return err_val; > ``` > > the release_value here will release...
What's this for? any design notes?
> This is a non-standard feature inspired by v8 engine. This allows disguising an accessor as data property. I.e. a message object An reference link to v8 are appreciated, also...
Refer to https://github.com/CppMicroServices/CppMicroServices/blob/2ba8e4c7f957a0f3846217f2dd46090c93c6c34d/doc/src/tutorial/spellcheckservice/ISpellCheckService.h#L48 These service have to export symbol, pure abstract class doesn't need to export any class. So that decouple things. That's what OSGi intent.
The expected interface definition ``` /*============================================================================= Library: CppMicroServices Copyright (c) The CppMicroServices developers. See the COPYRIGHT file at the top-level directory of this distribution and at https://github.com/CppMicroServices/CppMicroServices/COPYRIGHT . Licensed under...