webengine/osswebengine/JavaScriptCore/kjs/internal.h
branchCompilerCompatibility
changeset 26 63ded8f94800
parent 0 dd21522fd290
equal deleted inserted replaced
25:9d87bae3dc1b 26:63ded8f94800
    64     UString val;
    64     UString val;
    65   };
    65   };
    66 
    66 
    67   class NumberImp : public JSCell {
    67   class NumberImp : public JSCell {
    68     friend class ConstantValues;
    68     friend class ConstantValues;
    69     friend JSValue *jsNumberCell(double);
    69     IMPORT friend JSValue *jsNumberCell(double);
    70   public:
    70   public:
    71     double value() const { return val; }
    71     double value() const { return val; }
    72 
    72 
    73     JSType type() const { return NumberType; }
    73     JSType type() const { return NumberType; }
    74 
    74