OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 745 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
756 } else { | 756 } else { |
757 k->ShortPrint(); | 757 k->ShortPrint(); |
758 } | 758 } |
759 PrintF(": "); | 759 PrintF(": "); |
760 ValueAt(i)->ShortPrint(); | 760 ValueAt(i)->ShortPrint(); |
761 PrintF("\n"); | 761 PrintF("\n"); |
762 } | 762 } |
763 } | 763 } |
764 } | 764 } |
765 | 765 |
| 766 // Template instantiations. |
| 767 template void Dictionary<NumberDictionaryShape, uint32_t>::Print(); |
| 768 template void Dictionary<StringDictionaryShape, String*>::Print(); |
766 | 769 |
767 void AccessorInfo::AccessorInfoVerify() { | 770 void AccessorInfo::AccessorInfoVerify() { |
768 CHECK(IsAccessorInfo()); | 771 CHECK(IsAccessorInfo()); |
769 VerifyPointer(getter()); | 772 VerifyPointer(getter()); |
770 VerifyPointer(setter()); | 773 VerifyPointer(setter()); |
771 VerifyPointer(name()); | 774 VerifyPointer(name()); |
772 VerifyPointer(data()); | 775 VerifyPointer(data()); |
773 VerifyPointer(flag()); | 776 VerifyPointer(flag()); |
774 } | 777 } |
775 | 778 |
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1109 } | 1112 } |
1110 current = hash; | 1113 current = hash; |
1111 } | 1114 } |
1112 return true; | 1115 return true; |
1113 } | 1116 } |
1114 | 1117 |
1115 | 1118 |
1116 #endif // DEBUG | 1119 #endif // DEBUG |
1117 | 1120 |
1118 } } // namespace v8::internal | 1121 } } // namespace v8::internal |
OLD | NEW |