]> git.saurik.com Git - apple/javascriptcore.git/blobdiff - runtime/JSDateMath.h
JavaScriptCore-7600.1.4.11.8.tar.gz
[apple/javascriptcore.git] / runtime / JSDateMath.h
index a6dd96f99e9b03ca30354c50015e1817e2c6b7bf..17ba4a26e6667e667e83b69baddb8c47373a4927 100644 (file)
 
 namespace JSC {
 
-class ExecState;
+class VM;
 
-void msToGregorianDateTime(ExecState*, double, bool outputIsUTC, GregorianDateTime&);
-double gregorianDateTimeToMS(ExecState*, const GregorianDateTime&, double, bool inputIsUTC);
-double getUTCOffset(ExecState*);
-double parseDateFromNullTerminatedCharacters(ExecState*, const char* dateString);
-double parseDate(ExecState*, const WTF::String&);
+void msToGregorianDateTime(VM&, double, bool outputIsUTC, GregorianDateTime&);
+double gregorianDateTimeToMS(VM&, const GregorianDateTime&, double, bool inputIsUTC);
+double getUTCOffset(VM&);
+double parseDateFromNullTerminatedCharacters(VM&, const char* dateString);
+double parseDate(VM&, const WTF::String&);
 
 } // namespace JSC