8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f010cb5 commit 9c59d2fCopy full SHA for 9c59d2f
doc/api/addons.markdown
@@ -44,7 +44,6 @@ First we create a file `hello.cc`:
44
namespace demo {
45
46
using v8::FunctionCallbackInfo;
47
- using v8::HandleScope;
48
using v8::Isolate;
49
using v8::Local;
50
using v8::Object;
@@ -155,7 +154,6 @@ function calls and return a result. This is the main and only needed source
155
154
156
using v8::Exception;
157
158
159
160
161
using v8::Number;
@@ -212,7 +210,6 @@ there. Here's `addon.cc`:
212
210
213
211
using v8::Function;
214
215
216
217
218
using v8::Null;
@@ -263,7 +260,6 @@ the string passed to `createObject()`:
263
260
264
261
265
262
266
267
268
269
@@ -310,7 +306,6 @@ wraps a C++ function:
310
306
311
307
312
308
using v8::FunctionTemplate;
313
314
309
315
316
@@ -415,7 +410,6 @@ prototype:
415
410
416
411
417
412
418
419
413
420
414
421
@@ -505,7 +499,6 @@ Let's register our `createObject` method in `addon.cc`:
505
499
506
500
507
501
508
509
502
510
503
511
504
@@ -568,7 +561,6 @@ The implementation is similar to the above in `myobject.cc`:
568
561
569
562
570
563
571
572
564
573
565
574
566
@@ -668,7 +660,6 @@ In the following `addon.cc` we introduce a function `add()` that can take on two
668
660
669
661
670
662
671
672
663
673
664
674
665
@@ -745,7 +736,6 @@ The implementation of `myobject.cc` is similar as before:
745
736
746
737
747
738
748
749
739
750
740
751
741