OLD | NEW |
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 1118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1129 PrintF(out, "\n - name: "); | 1129 PrintF(out, "\n - name: "); |
1130 name()->ShortPrint(out); | 1130 name()->ShortPrint(out); |
1131 PrintF(out, "\n - line_offset: "); | 1131 PrintF(out, "\n - line_offset: "); |
1132 line_offset()->ShortPrint(out); | 1132 line_offset()->ShortPrint(out); |
1133 PrintF(out, "\n - column_offset: "); | 1133 PrintF(out, "\n - column_offset: "); |
1134 column_offset()->ShortPrint(out); | 1134 column_offset()->ShortPrint(out); |
1135 PrintF(out, "\n - type: "); | 1135 PrintF(out, "\n - type: "); |
1136 type()->ShortPrint(out); | 1136 type()->ShortPrint(out); |
1137 PrintF(out, "\n - id: "); | 1137 PrintF(out, "\n - id: "); |
1138 id()->ShortPrint(out); | 1138 id()->ShortPrint(out); |
1139 PrintF(out, "\n - data: "); | |
1140 data()->ShortPrint(out); | |
1141 PrintF(out, "\n - context data: "); | 1139 PrintF(out, "\n - context data: "); |
1142 context_data()->ShortPrint(out); | 1140 context_data()->ShortPrint(out); |
1143 PrintF(out, "\n - wrapper: "); | 1141 PrintF(out, "\n - wrapper: "); |
1144 wrapper()->ShortPrint(out); | 1142 wrapper()->ShortPrint(out); |
1145 PrintF(out, "\n - compilation type: %d", compilation_type()); | 1143 PrintF(out, "\n - compilation type: %d", compilation_type()); |
1146 PrintF(out, "\n - line ends: "); | 1144 PrintF(out, "\n - line ends: "); |
1147 line_ends()->ShortPrint(out); | 1145 line_ends()->ShortPrint(out); |
1148 PrintF(out, "\n - eval from shared: "); | 1146 PrintF(out, "\n - eval from shared: "); |
1149 eval_from_shared()->ShortPrint(out); | 1147 eval_from_shared()->ShortPrint(out); |
1150 PrintF(out, "\n - eval from instructions offset: "); | 1148 PrintF(out, "\n - eval from instructions offset: "); |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1218 } | 1216 } |
1219 } | 1217 } |
1220 PrintF(out, "\n"); | 1218 PrintF(out, "\n"); |
1221 } | 1219 } |
1222 | 1220 |
1223 | 1221 |
1224 #endif // OBJECT_PRINT | 1222 #endif // OBJECT_PRINT |
1225 | 1223 |
1226 | 1224 |
1227 } } // namespace v8::internal | 1225 } } // namespace v8::internal |
OLD | NEW |