libv8 5.7.492.65.1-arm-linux → 5.9.211.38.0beta0-arm-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libv8
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.7.492.65.1
5
- prerelease:
4
+ version: 5.9.211.38.0beta0
5
+ prerelease: 12
6
6
  platform: arm-linux
7
7
  authors:
8
8
  - Charles Lowell
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-07-18 00:00:00.000000000 Z
12
+ date: 2017-07-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -18,7 +18,7 @@ dependencies:
18
18
  requirements:
19
19
  - - ~>
20
20
  - !ruby/object:Gem::Version
21
- version: '11'
21
+ version: '12'
22
22
  type: :development
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ~>
28
28
  - !ruby/object:Gem::Version
29
- version: '11'
29
+ version: '12'
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: rake-compiler
32
32
  requirement: !ruby/object:Gem::Requirement
@@ -83,7 +83,6 @@ files:
83
83
  - vendor/v8/include/v8-inspector.h
84
84
  - vendor/v8/include/v8-debug.h
85
85
  - vendor/v8/include/v8-profiler.h
86
- - vendor/v8/include/v8-experimental.h
87
86
  - vendor/v8/include/v8-version.h
88
87
  - vendor/v8/include/libplatform/libplatform.h
89
88
  - vendor/v8/include/libplatform/v8-tracing.h
@@ -116,16 +115,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
116
115
  version: '0'
117
116
  segments:
118
117
  - 0
119
- hash: 559585075
118
+ hash: -150578019
120
119
  required_rubygems_version: !ruby/object:Gem::Requirement
121
120
  none: false
122
121
  requirements:
123
- - - ! '>='
122
+ - - ! '>'
124
123
  - !ruby/object:Gem::Version
125
- version: '0'
126
- segments:
127
- - 0
128
- hash: 559585075
124
+ version: 1.3.1
129
125
  requirements: []
130
126
  rubyforge_project: libv8
131
127
  rubygems_version: 1.8.23
@@ -1,58 +0,0 @@
1
- // Copyright 2015 the V8 project authors. All rights reserved.
2
- // Use of this source code is governed by a BSD-style license that can be
3
- // found in the LICENSE file.
4
-
5
- /**
6
- * This header contains a set of experimental V8 APIs. We hope these will
7
- * become a part of standard V8, but they may also be removed if we deem the
8
- * experiment to not be successul.
9
- */
10
- #ifndef V8_INCLUDE_V8_EXPERIMENTAL_H_
11
- #define V8_INCLUDE_V8_EXPERIMENTAL_H_
12
-
13
- #include "v8.h" // NOLINT(build/include)
14
-
15
- namespace v8 {
16
- namespace experimental {
17
-
18
- // Allow the embedder to construct accessors that V8 can compile and use
19
- // directly, without jumping into the runtime.
20
- class V8_EXPORT FastAccessorBuilder {
21
- public:
22
- struct ValueId {
23
- size_t value_id;
24
- };
25
- struct LabelId {
26
- size_t label_id;
27
- };
28
-
29
- static FastAccessorBuilder* New(Isolate* isolate);
30
-
31
- ValueId IntegerConstant(int int_constant);
32
- ValueId GetReceiver();
33
- ValueId LoadInternalField(ValueId value_id, int field_no);
34
- ValueId LoadInternalFieldUnchecked(ValueId value_id, int field_no);
35
- ValueId LoadValue(ValueId value_id, int offset);
36
- ValueId LoadObject(ValueId value_id, int offset);
37
- ValueId ToSmi(ValueId value_id);
38
-
39
- void ReturnValue(ValueId value_id);
40
- void CheckFlagSetOrReturnNull(ValueId value_id, int mask);
41
- void CheckNotZeroOrReturnNull(ValueId value_id);
42
- LabelId MakeLabel();
43
- void SetLabel(LabelId label_id);
44
- void Goto(LabelId label_id);
45
- void CheckNotZeroOrJump(ValueId value_id, LabelId label_id);
46
- ValueId Call(v8::FunctionCallback callback, ValueId value_id);
47
-
48
- private:
49
- FastAccessorBuilder() = delete;
50
- FastAccessorBuilder(const FastAccessorBuilder&) = delete;
51
- ~FastAccessorBuilder() = delete;
52
- void operator=(const FastAccessorBuilder&) = delete;
53
- };
54
-
55
- } // namespace experimental
56
- } // namespace v8
57
-
58
- #endif // V8_INCLUDE_V8_EXPERIMENTAL_H_