~ubuntu-branches/ubuntu/lucid/webkit/lucid-updates

« back to all changes in this revision

Viewing changes to JavaScriptCore/runtime/DateInstance.h

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2010-02-04 19:30:57 UTC
  • mfrom: (1.2.8 upstream) (4.3.9 sid)
  • Revision ID: james.westby@ubuntu.com-20100204193057-d3018lm1fipb0703
* New upstream release
* debian/copyright:
- Updated with changes since 1.1.19.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
    class DateInstance : public JSWrapperObject {
33
33
    public:
34
34
        DateInstance(ExecState*, double);
 
35
        DateInstance(ExecState*, NonNullPassRefPtr<Structure>, double);
35
36
        explicit DateInstance(ExecState*, NonNullPassRefPtr<Structure>);
36
37
 
37
38
        double internalNumber() const { return internalValue().uncheckedGetNumber(); }
54
55
 
55
56
        static PassRefPtr<Structure> createStructure(JSValue prototype)
56
57
        {
57
 
            return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags));
 
58
            return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount);
58
59
        }
59
60
 
60
61
    protected: