Example #1
0
Value::Value(const Value& other) {
  dupPayload(other);
  dupMeta(other);
}
Example #2
0
void Value::copy(const Value& other) {
  copyPayload(other);
  dupMeta(other);
}
Example #3
0
void Value::copy(const Value& other) {
  copyPayload(other);
  delete[] comments_;
  dupMeta(other);
}