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

Unified Diff: test/mjsunit/tools/codemap.js

Issue 8888006: Make more JS files beter match the coding standard. Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review comments Created 9 years 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/mjsunit/to_number_order.js ('k') | test/mjsunit/tools/profile.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/tools/codemap.js
diff --git a/test/mjsunit/tools/codemap.js b/test/mjsunit/tools/codemap.js
index 33d7e4e08759f2e579c80e709d68f22a28e17877..aedd3335bfa60c773ecb2c982d60a49bc5fb1ca5 100644
--- a/test/mjsunit/tools/codemap.js
+++ b/test/mjsunit/tools/codemap.js
@@ -31,19 +31,19 @@
function newCodeEntry(size, name) {
return new CodeMap.CodeEntry(size, name);
-};
+}
function assertEntry(codeMap, expected_name, addr) {
var entry = codeMap.findEntry(addr);
assertNotNull(entry, 'no entry at ' + addr.toString(16));
assertEquals(expected_name, entry.name, 'at ' + addr.toString(16));
-};
+}
function assertNoEntry(codeMap, addr) {
assertNull(codeMap.findEntry(addr), 'at ' + addr.toString(16));
-};
+}
(function testLibrariesAndStaticCode() {
« no previous file with comments | « test/mjsunit/to_number_order.js ('k') | test/mjsunit/tools/profile.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698