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

Unified Diff: src/type-info-inl.h

Issue 1207006: Rename NumberInfo to TypeInfo.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: changed project files Created 10 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/type-info.h ('k') | src/virtual-frame.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/type-info-inl.h
===================================================================
--- src/type-info-inl.h (revision 4259)
+++ src/type-info-inl.h (working copy)
@@ -25,26 +25,26 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#ifndef V8_NUMBER_INFO_INL_H_
-#define V8_NUMBER_INFO_INL_H_
+#ifndef V8_TYPE_INFO_INL_H_
+#define V8_TYPE_INFO_INL_H_
-#include "number-info.h"
+#include "type-info.h"
#include "objects-inl.h"
namespace v8 {
namespace internal {
-NumberInfo NumberInfo::TypeFromValue(Handle<Object> value) {
- NumberInfo info;
+TypeInfo TypeInfo::TypeFromValue(Handle<Object> value) {
+ TypeInfo info;
if (value->IsSmi()) {
- info = NumberInfo::Smi();
+ info = TypeInfo::Smi();
} else if (value->IsHeapNumber()) {
- info = NumberInfo::IsInt32Double(HeapNumber::cast(*value)->value())
- ? NumberInfo::Integer32()
- : NumberInfo::Double();
+ info = TypeInfo::IsInt32Double(HeapNumber::cast(*value)->value())
+ ? TypeInfo::Integer32()
+ : TypeInfo::Double();
} else {
- info = NumberInfo::Unknown();
+ info = TypeInfo::Unknown();
}
return info;
}
@@ -52,4 +52,4 @@
} } // namespace v8::internal
-#endif // V8_NUMBER_INFO_INL_H_
+#endif // V8_TYPE_INFO_INL_H_
« no previous file with comments | « src/type-info.h ('k') | src/virtual-frame.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698