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

Side by Side Diff: src/macros.py

Issue 23561007: add uncached Function::New (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: comments 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/execution.cc ('k') | src/objects.h » ('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 2006-2009 the V8 project authors. All rights reserved. 1 # Copyright 2006-2009 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 const msPerSecond = 1000; 62 const msPerSecond = 1000;
63 const msPerMinute = 60000; 63 const msPerMinute = 60000;
64 const msPerHour = 3600000; 64 const msPerHour = 3600000;
65 const msPerDay = 86400000; 65 const msPerDay = 86400000;
66 const msPerMonth = 2592000000; 66 const msPerMonth = 2592000000;
67 67
68 # For apinatives.js 68 # For apinatives.js
69 const kUninitialized = -1; 69 const kUninitialized = -1;
70 const kReadOnlyPrototypeBit = 3; 70 const kReadOnlyPrototypeBit = 3;
71 const kRemovePrototypeBit = 4; # For FunctionTemplateInfo, matches objects.h 71 const kRemovePrototypeBit = 4; # For FunctionTemplateInfo, matches objects.h
72 const kDoNotCacheBit = 5; # For FunctionTemplateInfo, matches objects.h
72 73
73 # Note: kDayZeroInJulianDay = ToJulianDay(1970, 0, 1). 74 # Note: kDayZeroInJulianDay = ToJulianDay(1970, 0, 1).
74 const kInvalidDate = 'Invalid Date'; 75 const kInvalidDate = 'Invalid Date';
75 const kDayZeroInJulianDay = 2440588; 76 const kDayZeroInJulianDay = 2440588;
76 const kMonthMask = 0x1e0; 77 const kMonthMask = 0x1e0;
77 const kDayMask = 0x01f; 78 const kDayMask = 0x01f;
78 const kYearShift = 9; 79 const kYearShift = 9;
79 const kMonthShift = 5; 80 const kMonthShift = 5;
80 81
81 # Limits for parts of the date, so that we support all the dates that 82 # Limits for parts of the date, so that we support all the dates that
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 const TYPE_EXTENSION = 1; 241 const TYPE_EXTENSION = 1;
241 const TYPE_NORMAL = 2; 242 const TYPE_NORMAL = 2;
242 243
243 # Matches Script::CompilationType from objects.h 244 # Matches Script::CompilationType from objects.h
244 const COMPILATION_TYPE_HOST = 0; 245 const COMPILATION_TYPE_HOST = 0;
245 const COMPILATION_TYPE_EVAL = 1; 246 const COMPILATION_TYPE_EVAL = 1;
246 const COMPILATION_TYPE_JSON = 2; 247 const COMPILATION_TYPE_JSON = 2;
247 248
248 # Matches Messages::kNoLineNumberInfo from v8.h 249 # Matches Messages::kNoLineNumberInfo from v8.h
249 const kNoLineNumberInfo = 0; 250 const kNoLineNumberInfo = 0;
OLDNEW
« no previous file with comments | « src/execution.cc ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698