Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

Commit

Permalink
src,test: fixing V8 lint/test issues
Browse files Browse the repository at this point in the history
* Fixed lint issue with TTD field initialization
* Updated the V8 baseline for `nexttick_throw`

PR-URL: #357
Reviewed-By: Kunal Pathak <[email protected]>
  • Loading branch information
kfarnung committed Aug 3, 2017
1 parent 270aaa1 commit e37fb5f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/env-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ inline Environment::AsyncHooks::AsyncHooks(v8::Isolate* isolate)
fields_(),
uid_fields_()
#if ENABLE_TTD_NODE
,uid_fields_ttdRef(nullptr)
, uid_fields_ttdRef(nullptr)
#endif
{
v8::HandleScope handle_scope(isolate_);
Expand Down
18 changes: 9 additions & 9 deletions test/message/nexttick_throw.v8.out
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

*test*message*nexttick_throw.js:*
*undefined_reference_error_maker;
*^
ReferenceError: *undefined_reference_error_maker is not defined*
*at *test*message*nexttick_throw.js:*:*
*at _combinedTickCallback (internal/process/next_tick.js:*:*)
*at *_tickCallback (internal/process/next_tick.js:*:*)
*at Module.runMain (module.js:*:*)
*at startup (bootstrap_node.js:*:*)
*at *bootstrap_node.js:*:*
undefined_reference_error_maker;
^
ReferenceError: undefined_reference_error_maker is not defined
at *test*message*nexttick_throw.js:*:*
at _combinedTickCallback (internal/process/next_tick.js:*:*)
at process._tickCallback (internal/process/next_tick.js:*:*)
at Function.Module.runMain (module.js:*:*)
at startup (bootstrap_node.js:*:*)
at bootstrap_node.js:*:*

0 comments on commit e37fb5f

Please sign in to comment.