@@ -340,14 +340,11 @@ pub trait LookAheadMethods<'sel, S> {
340340
341341 /// Get the the child selection for a given field
342342 /// If a child has an alias, it will only match if the alias matches `name`
343- #[ deprecated( note = "please use `children` to access the child selections instead" ) ]
344343 fn select_child ( & self , name : & str ) -> Option < & Self > ;
345344
346345 /// Check if a given child selection with a name exists
347346 /// If a child has an alias, it will only match if the alias matches `name`
348- #[ deprecated( note = "please use `children` to access the child selections instead" ) ]
349347 fn has_child ( & self , name : & str ) -> bool {
350- #[ allow( deprecated) ]
351348 self . select_child ( name) . is_some ( )
352349 }
353350
@@ -366,7 +363,6 @@ pub trait LookAheadMethods<'sel, S> {
366363 }
367364
368365 /// Get the (possibly aliased) names of the top level children for the current selection
369- #[ deprecated( note = "please use `children` to access the child selections instead" ) ]
370366 fn child_names ( & self ) -> Vec < & ' sel str > ;
371367
372368 /// Get an iterator over the children for the current selection
@@ -1307,7 +1303,6 @@ query Hero {
13071303 }
13081304
13091305 #[ test]
1310- #[ allow( deprecated) ]
13111306 fn check_select_child ( ) {
13121307 let lookahead: LookAheadSelection < DefaultScalarValue > = LookAheadSelection {
13131308 name : "hero" ,
@@ -1459,7 +1454,6 @@ fragment heroFriendNames on Hero {
14591454 }
14601455
14611456 #[ test]
1462- #[ allow( deprecated) ]
14631457 fn check_visitability ( ) {
14641458 let docs = parse_document_source :: < DefaultScalarValue > (
14651459 "
0 commit comments