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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 PrintF(out, " -entry = %d", GetDictionaryEntry()); | 56 PrintF(out, " -entry = %d", GetDictionaryEntry()); |
57 break; | 57 break; |
58 case CONSTANT_FUNCTION: | 58 case CONSTANT_FUNCTION: |
59 PrintF(out, " -type = constant function\n"); | 59 PrintF(out, " -type = constant function\n"); |
60 PrintF(out, " -function:\n"); | 60 PrintF(out, " -function:\n"); |
61 GetConstantFunction()->Print(out); | 61 GetConstantFunction()->Print(out); |
62 PrintF(out, "\n"); | 62 PrintF(out, "\n"); |
63 break; | 63 break; |
64 case FIELD: | 64 case FIELD: |
65 PrintF(out, " -type = field\n"); | 65 PrintF(out, " -type = field\n"); |
66 PrintF(out, " -index = %d", GetFieldIndex()); | 66 PrintF(out, " -index = %d", GetFieldIndex().FieldIndex()); |
67 PrintF(out, "\n"); | 67 PrintF(out, "\n"); |
68 break; | 68 break; |
69 case CALLBACKS: | 69 case CALLBACKS: |
70 PrintF(out, " -type = call backs\n"); | 70 PrintF(out, " -type = call backs\n"); |
71 PrintF(out, " -callback object:\n"); | 71 PrintF(out, " -callback object:\n"); |
72 GetCallbackObject()->Print(out); | 72 GetCallbackObject()->Print(out); |
73 break; | 73 break; |
74 case HANDLER: | 74 case HANDLER: |
75 PrintF(out, " -type = lookup proxy\n"); | 75 PrintF(out, " -type = lookup proxy\n"); |
76 break; | 76 break; |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 PrintF(out, " @ "); | 113 PrintF(out, " @ "); |
114 GetValue()->ShortPrint(out); | 114 GetValue()->ShortPrint(out); |
115 PrintF(out, " %d\n", GetDetails().descriptor_index()); | 115 PrintF(out, " %d\n", GetDetails().descriptor_index()); |
116 } | 116 } |
117 | 117 |
118 | 118 |
119 #endif | 119 #endif |
120 | 120 |
121 | 121 |
122 } } // namespace v8::internal | 122 } } // namespace v8::internal |
OLD | NEW |