@@ -91,26 +91,26 @@ abstract class TlsLibrary extends string {
9191 /** Gets a name, which is a member of `version_constants`, that can be used to specify the protocol family `family`. */
9292 abstract string unspecific_version_name ( ProtocolFamily family ) ;
9393
94- /** The module or class holding the version constants. */
94+ /** Gets an API node representing the module or class holding the version constants. */
9595 abstract API:: Node version_constants ( ) ;
9696
97- /** A dataflow node representing a specific protocol version. */
98- DataFlow :: Node specific_version ( ProtocolVersion version ) {
99- result = version_constants ( ) .getMember ( specific_version_name ( version ) ) . getAUse ( )
97+ /** Gets an API node representing a specific protocol version. */
98+ API :: Node specific_version ( ProtocolVersion version ) {
99+ result = version_constants ( ) .getMember ( specific_version_name ( version ) )
100100 }
101101
102- /** Gets a dataflow node representing the protocol family `family`. */
103- DataFlow :: Node unspecific_version ( ProtocolFamily family ) {
104- result = version_constants ( ) .getMember ( unspecific_version_name ( family ) ) . getAUse ( )
102+ /** Gets an API node representing the protocol family `family`. */
103+ API :: Node unspecific_version ( ProtocolFamily family ) {
104+ result = version_constants ( ) .getMember ( unspecific_version_name ( family ) )
105105 }
106106
107- /** The creation of a context with a default protocol. */
107+ /** Gets a creation of a context with a default protocol. */
108108 abstract ContextCreation default_context_creation ( ) ;
109109
110- /** The creation of a context with a specific protocol. */
110+ /** Gets a creation of a context with a specific protocol. */
111111 abstract ContextCreation specific_context_creation ( ) ;
112112
113- /** The creation of a context with a specific protocol version, known to be insecure. */
113+ /** Gets a creation of a context with a specific protocol version, known to be insecure. */
114114 ContextCreation insecure_context_creation ( ProtocolVersion version ) {
115115 result in [ specific_context_creation ( ) , default_context_creation ( ) ] and
116116 result .getProtocol ( ) = version and
@@ -123,15 +123,15 @@ abstract class TlsLibrary extends string {
123123 result .getProtocol ( ) = family
124124 }
125125
126- /** A connection is created in an insecure manner, not from a context. */
126+ /** Gets a dataflow node representing a connection being created in an insecure manner, not from a context. */
127127 abstract DataFlow:: Node insecure_connection_creation ( ProtocolVersion version ) ;
128128
129- /** A connection is created from a context. */
129+ /** Gets a dataflow node representing a connection being created from a context. */
130130 abstract ConnectionCreation connection_creation ( ) ;
131131
132- /** A context is being restricted on which protocols it can accepts. */
132+ /** Gets a dataflow node representing a context being restricted on which protocols it can accepts. */
133133 abstract ProtocolRestriction protocol_restriction ( ) ;
134134
135- /** A context is being relaxed on which protocols it can accepts. */
135+ /** Gets a dataflow node representing a context being relaxed on which protocols it can accepts. */
136136 abstract ProtocolUnrestriction protocol_unrestriction ( ) ;
137137}
0 commit comments