~ubuntu-branches/ubuntu/karmic/webkit/karmic-proposed

« back to all changes in this revision

Viewing changes to JavaScriptCore/runtime/Structure.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2009-05-15 18:30:58 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090515183058-50q5exjo9b1kxy9s
Tags: 1.1.7-1
* New upstream release
* debian/libwebkit-1.0-2.symbols:
- updated with the new symbols in 1.1.7
* debian/libwebkit-dev.install, debian/libwebkit-dev.links,
  debian/rules:
- Build, and ship gtk-doc documentation (Closes: #526683)
* debian/copyright:
- updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
120
120
#endif
121
121
}
122
122
 
123
 
Structure::Structure(JSValuePtr prototype, const TypeInfo& typeInfo)
 
123
Structure::Structure(JSValue prototype, const TypeInfo& typeInfo)
124
124
    : m_typeInfo(typeInfo)
125
125
    , m_prototype(prototype)
126
126
    , m_propertyTable(0)
418
418
    return transition.release();
419
419
}
420
420
 
421
 
PassRefPtr<Structure> Structure::changePrototypeTransition(Structure* structure, JSValuePtr prototype)
 
421
PassRefPtr<Structure> Structure::changePrototypeTransition(Structure* structure, JSValue prototype)
422
422
{
423
423
    RefPtr<Structure> transition = create(prototype, structure->typeInfo());
424
424