Index: src/token.h |
diff --git a/src/token.h b/src/token.h |
index 1eeb60d876607173885bed61a64e279fd08a6a93..3036e5512a0b14f3d7adea6fd5167865d8a9e4dd 100644 |
--- a/src/token.h |
+++ b/src/token.h |
@@ -1,4 +1,4 @@ |
-// Copyright 2011 the V8 project authors. All rights reserved. |
+// Copyright 2012 the V8 project authors. All rights reserved. |
// Redistribution and use in source and binary forms, with or without |
// modification, are permitted provided that the following conditions are |
// met: |
@@ -215,7 +215,7 @@ class Token { |
return EQ <= op && op <= IN; |
} |
- static bool IsOrderedCompareOp(Value op) { |
+ static bool IsOrderedRelationalCompareOp(Value op) { |
return op == LT || op == LTE || op == GT || op == GTE; |
} |