Provide an RNG seed for creating snapshot.
If Math.random is called when creating the snapshot, we need seeds to work with. Those seeds are going to be overwritten after deserializing from the snapshot. NOTRY=true NOTREECHECKS=true TBR=bmeurer@chromium.org Review URL: https://codereview.chromium.org/1458003005 Cr-Commit-Position: refs/heads/master@{#32134}
This commit is contained in:
parent
321c4ace97
commit
b154e8d7a0
@ -14,7 +14,7 @@ var GlobalMath = global.Math;
|
|||||||
var GlobalObject = global.Object;
|
var GlobalObject = global.Object;
|
||||||
var InternalArray = utils.InternalArray;
|
var InternalArray = utils.InternalArray;
|
||||||
var NaN = %GetRootNaN();
|
var NaN = %GetRootNaN();
|
||||||
var rngstate;
|
var rngstate = { a: 1, b: 2, c: 3, d: 4 };
|
||||||
var toStringTagSymbol = utils.ImportNow("to_string_tag_symbol");
|
var toStringTagSymbol = utils.ImportNow("to_string_tag_symbol");
|
||||||
|
|
||||||
utils.InitializeRNG = function() {
|
utils.InitializeRNG = function() {
|
||||||
|
Loading…
Reference in New Issue
Block a user