Changeset 36660 in webkit for trunk/JavaScriptCore/kjs/nodes.h
- Timestamp:
- Sep 18, 2008, 11:32:12 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes.h
r36417 r36660 314 314 class StringNode : public ExpressionNode { 315 315 public: 316 StringNode(JSGlobalData* globalData, const UString*v) JSC_FAST_CALL316 StringNode(JSGlobalData* globalData, const Identifier& v) JSC_FAST_CALL 317 317 : ExpressionNode(globalData, StringType) 318 , m_value( *v)318 , m_value(v) 319 319 { 320 320 } … … 323 323 324 324 virtual bool isString() const JSC_FAST_CALL { return true; } 325 UString& value() { return m_value; }325 const Identifier& value() { return m_value; } 326 326 virtual bool isPure(CodeGenerator&) const JSC_FAST_CALL { return true; } 327 327 virtual void streamTo(SourceStream&) const JSC_FAST_CALL; … … 329 329 330 330 private: 331 UStringm_value;331 Identifier m_value; 332 332 }; 333 333
Note:
See TracChangeset
for help on using the changeset viewer.