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

Side by Side Diff: src/objects-printer.cc

Issue 185533014: Remove Script::SetData and the script_data parameter from Script::(Compile|New). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: rebased Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/objects-inl.h ('k') | test/cctest/test-api.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 1129 matching lines...) Expand 10 before | Expand all | Expand 10 after
1140 PrintF(out, "\n - name: "); 1140 PrintF(out, "\n - name: ");
1141 name()->ShortPrint(out); 1141 name()->ShortPrint(out);
1142 PrintF(out, "\n - line_offset: "); 1142 PrintF(out, "\n - line_offset: ");
1143 line_offset()->ShortPrint(out); 1143 line_offset()->ShortPrint(out);
1144 PrintF(out, "\n - column_offset: "); 1144 PrintF(out, "\n - column_offset: ");
1145 column_offset()->ShortPrint(out); 1145 column_offset()->ShortPrint(out);
1146 PrintF(out, "\n - type: "); 1146 PrintF(out, "\n - type: ");
1147 type()->ShortPrint(out); 1147 type()->ShortPrint(out);
1148 PrintF(out, "\n - id: "); 1148 PrintF(out, "\n - id: ");
1149 id()->ShortPrint(out); 1149 id()->ShortPrint(out);
1150 PrintF(out, "\n - data: ");
1151 data()->ShortPrint(out);
1152 PrintF(out, "\n - context data: "); 1150 PrintF(out, "\n - context data: ");
1153 context_data()->ShortPrint(out); 1151 context_data()->ShortPrint(out);
1154 PrintF(out, "\n - wrapper: "); 1152 PrintF(out, "\n - wrapper: ");
1155 wrapper()->ShortPrint(out); 1153 wrapper()->ShortPrint(out);
1156 PrintF(out, "\n - compilation type: %d", compilation_type()); 1154 PrintF(out, "\n - compilation type: %d", compilation_type());
1157 PrintF(out, "\n - line ends: "); 1155 PrintF(out, "\n - line ends: ");
1158 line_ends()->ShortPrint(out); 1156 line_ends()->ShortPrint(out);
1159 PrintF(out, "\n - eval from shared: "); 1157 PrintF(out, "\n - eval from shared: ");
1160 eval_from_shared()->ShortPrint(out); 1158 eval_from_shared()->ShortPrint(out);
1161 PrintF(out, "\n - eval from instructions offset: "); 1159 PrintF(out, "\n - eval from instructions offset: ");
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
1229 } 1227 }
1230 } 1228 }
1231 PrintF(out, "\n"); 1229 PrintF(out, "\n");
1232 } 1230 }
1233 1231
1234 1232
1235 #endif // OBJECT_PRINT 1233 #endif // OBJECT_PRINT
1236 1234
1237 1235
1238 } } // namespace v8::internal 1236 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/objects-inl.h ('k') | test/cctest/test-api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698