libv8 5.7.492.65.1-universal-darwin-14 → 5.9.211.38.0beta0-universal-darwin-14

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.
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libv8
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.7.492.65.1
4
+ version: 5.9.211.38.0beta0
5
5
  platform: universal-darwin-14
6
6
  authors:
7
7
  - Charles Lowell
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-18 00:00:00.000000000 Z
11
+ date: 2017-07-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ~>
18
18
  - !ruby/object:Gem::Version
19
- version: '11'
19
+ version: '12'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ~>
25
25
  - !ruby/object:Gem::Version
26
- version: '11'
26
+ version: '12'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake-compiler
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -70,7 +70,6 @@ files:
70
70
  - vendor/v8/include/libplatform/libplatform.h
71
71
  - vendor/v8/include/libplatform/v8-tracing.h
72
72
  - vendor/v8/include/v8-debug.h
73
- - vendor/v8/include/v8-experimental.h
74
73
  - vendor/v8/include/v8-inspector-protocol.h
75
74
  - vendor/v8/include/v8-inspector.h
76
75
  - vendor/v8/include/v8-platform.h
@@ -103,9 +102,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
103
102
  version: '0'
104
103
  required_rubygems_version: !ruby/object:Gem::Requirement
105
104
  requirements:
106
- - - '>='
105
+ - - '>'
107
106
  - !ruby/object:Gem::Version
108
- version: '0'
107
+ version: 1.3.1
109
108
  requirements: []
110
109
  rubyforge_project: libv8
111
110
  rubygems_version: 2.0.14
@@ -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_