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

Side by Side Diff: src/objects-inl.h

Issue 23680014: revert 16584 for breaking build (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 3 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.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 4551 matching lines...) Expand 10 before | Expand all | Expand 10 after
4562 SMI_ACCESSORS(FunctionTemplateInfo, length, kLengthOffset) 4562 SMI_ACCESSORS(FunctionTemplateInfo, length, kLengthOffset)
4563 BOOL_ACCESSORS(FunctionTemplateInfo, flag, hidden_prototype, 4563 BOOL_ACCESSORS(FunctionTemplateInfo, flag, hidden_prototype,
4564 kHiddenPrototypeBit) 4564 kHiddenPrototypeBit)
4565 BOOL_ACCESSORS(FunctionTemplateInfo, flag, undetectable, kUndetectableBit) 4565 BOOL_ACCESSORS(FunctionTemplateInfo, flag, undetectable, kUndetectableBit)
4566 BOOL_ACCESSORS(FunctionTemplateInfo, flag, needs_access_check, 4566 BOOL_ACCESSORS(FunctionTemplateInfo, flag, needs_access_check,
4567 kNeedsAccessCheckBit) 4567 kNeedsAccessCheckBit)
4568 BOOL_ACCESSORS(FunctionTemplateInfo, flag, read_only_prototype, 4568 BOOL_ACCESSORS(FunctionTemplateInfo, flag, read_only_prototype,
4569 kReadOnlyPrototypeBit) 4569 kReadOnlyPrototypeBit)
4570 BOOL_ACCESSORS(FunctionTemplateInfo, flag, remove_prototype, 4570 BOOL_ACCESSORS(FunctionTemplateInfo, flag, remove_prototype,
4571 kRemovePrototypeBit) 4571 kRemovePrototypeBit)
4572 BOOL_ACCESSORS(FunctionTemplateInfo, flag, do_not_cache,
4573 kDoNotCacheBit)
4574 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_expression, 4572 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_expression,
4575 kIsExpressionBit) 4573 kIsExpressionBit)
4576 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_toplevel, 4574 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_toplevel,
4577 kIsTopLevelBit) 4575 kIsTopLevelBit)
4578 4576
4579 BOOL_ACCESSORS(SharedFunctionInfo, 4577 BOOL_ACCESSORS(SharedFunctionInfo,
4580 compiler_hints, 4578 compiler_hints,
4581 allows_lazy_compilation, 4579 allows_lazy_compilation,
4582 kAllowLazyCompilation) 4580 kAllowLazyCompilation)
4583 BOOL_ACCESSORS(SharedFunctionInfo, 4581 BOOL_ACCESSORS(SharedFunctionInfo,
(...skipping 1716 matching lines...) Expand 10 before | Expand all | Expand 10 after
6300 #undef WRITE_UINT32_FIELD 6298 #undef WRITE_UINT32_FIELD
6301 #undef READ_SHORT_FIELD 6299 #undef READ_SHORT_FIELD
6302 #undef WRITE_SHORT_FIELD 6300 #undef WRITE_SHORT_FIELD
6303 #undef READ_BYTE_FIELD 6301 #undef READ_BYTE_FIELD
6304 #undef WRITE_BYTE_FIELD 6302 #undef WRITE_BYTE_FIELD
6305 6303
6306 6304
6307 } } // namespace v8::internal 6305 } } // namespace v8::internal
6308 6306
6309 #endif // V8_OBJECTS_INL_H_ 6307 #endif // V8_OBJECTS_INL_H_
OLDNEW
« no previous file with comments | « src/objects.h ('k') | test/cctest/test-api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698