File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -96,6 +96,7 @@ pub struct OpaqueJSPropertyNameAccumulator([u8; 0]);
96
96
pub type JSPropertyNameAccumulatorRef = * mut OpaqueJSPropertyNameAccumulator ;
97
97
98
98
/// A function used to deallocate bytes passed to a Typed Array constructor.
99
+ ///
99
100
/// The function should take two arguments. The first is a pointer to
100
101
/// the bytes that were originally passed to the Typed Array constructor.
101
102
/// The second is a pointer to additional information desired at the time
@@ -602,8 +603,9 @@ pub type JSPropertyAttributes = ::std::os::raw::c_uint;
602
603
/// Specifies that a class has no special attributes.
603
604
pub const kJSClassAttributeNone: :: std:: os:: raw:: c_uint = 0 ;
604
605
/// Specifies that a class should not automatically generate a shared
605
- /// prototype for its instance objects. Use
606
- /// `kJSClassAttributeNoAutomaticPrototype` in combination with
606
+ /// prototype for its instance objects.
607
+ ///
608
+ /// Use `kJSClassAttributeNoAutomaticPrototype` in combination with
607
609
/// [`JSObjectSetPrototype`] to manage prototypes manually.
608
610
pub const kJSClassAttributeNoAutomaticPrototype: :: std:: os:: raw:: c_uint = 2 ;
609
611
You can’t perform that action at this time.
0 commit comments