Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Unified Diff: test/cctest/test-extra.js

Issue 1275683002: Rename "extras exports" to "extras binding" (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/cctest/test-api.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-extra.js
diff --git a/test/cctest/test-extra.js b/test/cctest/test-extra.js
index 829ddee01a4c140aacbfa9ca4969daae9ad7929d..f943ea6c4e5adedb79b2c44213cdcf6a8ba56c60 100644
--- a/test/cctest/test-extra.js
+++ b/test/cctest/test-extra.js
@@ -2,13 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-(function (global, exports) {
+(function (global, binding) {
'use strict';
- exports.testExtraShouldReturnFive = function () {
+ binding.testExtraShouldReturnFive = function () {
return 5;
};
- exports.testExtraShouldCallToRuntime = function() {
- return exports.runtime(3);
+ binding.testExtraShouldCallToRuntime = function() {
+ return binding.runtime(3);
};
})
« no previous file with comments | « test/cctest/test-api.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698