@@ -12,79 +12,79 @@ module ContainerList {
1212
1313 MethodModels ( ) {
1414 // signature: func (*Element).Next() *Element
15- this . hasQualifiedName ( "container/list" , "Element" , "Next" ) and
15+ hasQualifiedName ( "container/list" , "Element" , "Next" ) and
1616 ( inp .isReceiver ( ) and outp .isResult ( ) )
1717 or
1818 // signature: func (*Element).Prev() *Element
19- this . hasQualifiedName ( "container/list" , "Element" , "Prev" ) and
19+ hasQualifiedName ( "container/list" , "Element" , "Prev" ) and
2020 ( inp .isReceiver ( ) and outp .isResult ( ) )
2121 or
2222 // signature: func (*List).Back() *Element
23- this . hasQualifiedName ( "container/list" , "List" , "Back" ) and
23+ hasQualifiedName ( "container/list" , "List" , "Back" ) and
2424 ( inp .isReceiver ( ) and outp .isResult ( ) )
2525 or
2626 // signature: func (*List).Front() *Element
27- this . hasQualifiedName ( "container/list" , "List" , "Front" ) and
27+ hasQualifiedName ( "container/list" , "List" , "Front" ) and
2828 ( inp .isReceiver ( ) and outp .isResult ( ) )
2929 or
3030 // signature: func (*List).Init() *List
31- this . hasQualifiedName ( "container/list" , "List" , "Init" ) and
31+ hasQualifiedName ( "container/list" , "List" , "Init" ) and
3232 ( inp .isReceiver ( ) and outp .isResult ( ) )
3333 or
3434 // signature: func (*List).InsertAfter(v interface{}, mark *Element) *Element
35- this . hasQualifiedName ( "container/list" , "List" , "InsertAfter" ) and
35+ hasQualifiedName ( "container/list" , "List" , "InsertAfter" ) and
3636 (
3737 inp .isParameter ( 0 ) and
3838 ( outp .isReceiver ( ) or outp .isResult ( ) )
3939 )
4040 or
4141 // signature: func (*List).InsertBefore(v interface{}, mark *Element) *Element
42- this . hasQualifiedName ( "container/list" , "List" , "InsertBefore" ) and
42+ hasQualifiedName ( "container/list" , "List" , "InsertBefore" ) and
4343 (
4444 inp .isParameter ( 0 ) and
4545 ( outp .isReceiver ( ) or outp .isResult ( ) )
4646 )
4747 or
4848 // signature: func (*List).MoveAfter(e *Element, mark *Element)
49- this . hasQualifiedName ( "container/list" , "List" , "MoveAfter" ) and
49+ hasQualifiedName ( "container/list" , "List" , "MoveAfter" ) and
5050 ( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
5151 or
5252 // signature: func (*List).MoveBefore(e *Element, mark *Element)
53- this . hasQualifiedName ( "container/list" , "List" , "MoveBefore" ) and
53+ hasQualifiedName ( "container/list" , "List" , "MoveBefore" ) and
5454 ( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
5555 or
5656 // signature: func (*List).MoveToBack(e *Element)
57- this . hasQualifiedName ( "container/list" , "List" , "MoveToBack" ) and
57+ hasQualifiedName ( "container/list" , "List" , "MoveToBack" ) and
5858 ( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
5959 or
6060 // signature: func (*List).MoveToFront(e *Element)
61- this . hasQualifiedName ( "container/list" , "List" , "MoveToFront" ) and
61+ hasQualifiedName ( "container/list" , "List" , "MoveToFront" ) and
6262 ( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
6363 or
6464 // signature: func (*List).PushBack(v interface{}) *Element
65- this . hasQualifiedName ( "container/list" , "List" , "PushBack" ) and
65+ hasQualifiedName ( "container/list" , "List" , "PushBack" ) and
6666 (
6767 inp .isParameter ( 0 ) and
6868 ( outp .isReceiver ( ) or outp .isResult ( ) )
6969 )
7070 or
7171 // signature: func (*List).PushBackList(other *List)
72- this . hasQualifiedName ( "container/list" , "List" , "PushBackList" ) and
72+ hasQualifiedName ( "container/list" , "List" , "PushBackList" ) and
7373 ( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
7474 or
7575 // signature: func (*List).PushFront(v interface{}) *Element
76- this . hasQualifiedName ( "container/list" , "List" , "PushFront" ) and
76+ hasQualifiedName ( "container/list" , "List" , "PushFront" ) and
7777 (
7878 inp .isParameter ( 0 ) and
7979 ( outp .isReceiver ( ) or outp .isResult ( ) )
8080 )
8181 or
8282 // signature: func (*List).PushFrontList(other *List)
83- this . hasQualifiedName ( "container/list" , "List" , "PushFrontList" ) and
83+ hasQualifiedName ( "container/list" , "List" , "PushFrontList" ) and
8484 ( inp .isParameter ( 0 ) and outp .isReceiver ( ) )
8585 or
8686 // signature: func (*List).Remove(e *Element) interface{}
87- this . hasQualifiedName ( "container/list" , "List" , "Remove" ) and
87+ hasQualifiedName ( "container/list" , "List" , "Remove" ) and
8888 ( inp .isParameter ( 0 ) and outp .isResult ( ) )
8989 }
9090
0 commit comments