public BaristaModuleRecord CreateBaristaModuleRecord(BaristaContext context, JavaScriptValueSafeHandle specifier, BaristaModuleRecord parentModule = null, bool setAsHost = false, IBaristaModuleLoader moduleLoader = null)
        {
            if (context == null)
            {
                throw new ArgumentNullException(nameof(context));
            }

            if (specifier == null || specifier.IsClosed || specifier.IsInvalid)
            {
                throw new ArgumentNullException(nameof(specifier));
            }

            var moduleNameValue = context.CreateValue <JsString>(specifier);

            if (moduleNameValue == null)
            {
                throw new InvalidOperationException("Specifier is expected to be a string value.");
            }

            return(CreateBaristaModuleRecordInternal(context, moduleNameValue.ToString(), specifier, parentModule, setAsHost, moduleLoader));
        }
Пример #2
0
        /// <summary>
        /// Returns the exception that caused the runtime of the current context to be in the exception state and resets the exception state for the runtime.
        /// </summary>
        /// <returns></returns>
        public JsValue GetAndClearException()
        {
            var valueHandle = m_context.Engine.JsGetAndClearException();

            return(m_context.CreateValue(valueHandle));
        }