Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(453)

Side by Side Diff: third_party/WebKit/Source/core/dom/ModuleScript.h

Issue 2839563002: [ES6 modules] Return previous error when an instantiation is reattempt. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ModuleScript_h 5 #ifndef ModuleScript_h
6 #define ModuleScript_h 6 #define ModuleScript_h
7 7
8 #include "bindings/core/v8/ScriptModule.h" 8 #include "bindings/core/v8/ScriptModule.h"
9 #include "bindings/core/v8/ScriptValue.h" 9 #include "bindings/core/v8/ScriptValue.h"
10 #include "bindings/core/v8/ScriptWrappable.h" 10 #include "bindings/core/v8/ScriptWrappable.h"
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 return instantiation_state_; 49 return instantiation_state_;
50 } 50 }
51 51
52 // Implements Step 7.1 of: 52 // Implements Step 7.1 of:
53 // https://html.spec.whatwg.org/multipage/webappapis.html#internal-module-scri pt-graph-fetching-procedure 53 // https://html.spec.whatwg.org/multipage/webappapis.html#internal-module-scri pt-graph-fetching-procedure
54 void SetInstantiationErrorAndClearRecord(ScriptValue error); 54 void SetInstantiationErrorAndClearRecord(ScriptValue error);
55 // Implements Step 7.2 of: 55 // Implements Step 7.2 of:
56 // https://html.spec.whatwg.org/multipage/webappapis.html#internal-module-scri pt-graph-fetching-procedure 56 // https://html.spec.whatwg.org/multipage/webappapis.html#internal-module-scri pt-graph-fetching-procedure
57 void SetInstantiationSuccess(); 57 void SetInstantiationSuccess();
58 58
59 v8::Local<v8::Value> CreateInstantiationError(v8::Isolate* isolate) const {
hiroshige 2017/04/27 22:56:40 ModulatorImpl::GetInstantiationError() and ModuleS
kouhei (in TOK) 2017/04/28 00:55:09 Yes. That's the idea. Done.
hiroshige 2017/04/28 01:28:35 nit: Probably unifying the Create...() and Get...(
60 return instantiation_error_.NewLocal(isolate);
61 }
62
59 ParserDisposition ParserState() const { return parser_state_; } 63 ParserDisposition ParserState() const { return parser_state_; }
60 WebURLRequest::FetchCredentialsMode CredentialsMode() const { 64 WebURLRequest::FetchCredentialsMode CredentialsMode() const {
61 return credentials_mode_; 65 return credentials_mode_;
62 } 66 }
63 const String& Nonce() const { return nonce_; } 67 const String& Nonce() const { return nonce_; }
64 68
65 DECLARE_TRACE(); 69 DECLARE_TRACE();
66 DECLARE_TRACE_WRAPPERS(); 70 DECLARE_TRACE_WRAPPERS();
67 71
68 private: 72 private:
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 // https://html.spec.whatwg.org/multipage/webappapis.html#concept-module-scrip t-parser 120 // https://html.spec.whatwg.org/multipage/webappapis.html#concept-module-scrip t-parser
117 const ParserDisposition parser_state_; 121 const ParserDisposition parser_state_;
118 122
119 // https://html.spec.whatwg.org/multipage/webappapis.html#concept-module-scrip t-credentials-mode 123 // https://html.spec.whatwg.org/multipage/webappapis.html#concept-module-scrip t-credentials-mode
120 const WebURLRequest::FetchCredentialsMode credentials_mode_; 124 const WebURLRequest::FetchCredentialsMode credentials_mode_;
121 }; 125 };
122 126
123 } // namespace blink 127 } // namespace blink
124 128
125 #endif 129 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698