Home | History | Annotate | Download | only in scripts

Lines Matching refs:property_attributes

2034         my $property_attributes = "v8::DontDelete";
2036 $property_attributes .= " | v8::DontEnum";
2039 $property_attributes .= " | v8::ReadOnly";
2075 $property_attributes .= " | v8::ReadOnly";
2079 ${conditional}$template->SetAccessor(v8::String::New("$name"), ${interfaceName}Internal::${name}AttrGetter, 0, v8::Handle<v8::Value>(), v8::ALL_CAN_READ, static_cast<v8::PropertyAttribute>($property_attributes));
2098 if ($property_attributes eq "v8::DontDelete") {
2099 $property_attributes = "";
2101 $property_attributes = ", static_cast<v8::PropertyAttribute>($property_attributes)";
2104 if ($template eq "proto" && $conditional eq "" && $signature eq "defaultSignature" && $property_attributes eq "") {
2110 ${conditional}$template->Set(v8::String::New("$name"), v8::FunctionTemplate::New($callback, v8::Handle<v8::Value>(), ${signature})$property_attributes);