#include "Escargot.h" #include "StringObject.h" #include "Context.h" namespace Escargot { StringObject::StringObject(ExecutionState& state, String* value) : Object(state) , m_primitiveValue(value) { setPrototype(state, state.context()->globalObject()->stringPrototype()); } }