| 1040 | // --- Implementation --- |
| 1041 | |
| 1042 | void Template::Set(Isolate* isolate, const char* name, Local<Data> value, |
| 1043 | PropertyAttribute attributes) { |
| 1044 | Set(String::NewFromUtf8(isolate, name, NewStringType::kInternalized) |
| 1045 | .ToLocalChecked(), |
| 1046 | value, attributes); |
| 1047 | } |
| 1048 | |
| 1049 | FunctionTemplate* FunctionTemplate::Cast(Data* data) { |
| 1050 | #ifdef V8_ENABLE_CHECKS |