data-weave-intellij-plugin icon indicating copy to clipboard operation
data-weave-intellij-plugin copied to clipboard

Extract Variable inside do block should declare it inside

Open machaval opened this issue 7 years ago • 0 comments

fun isSoapVersion12(xml: Object) = do {
      xml.Envelope.Body.# != null and
        (xml.Envelope.Body.# as Object).uri == "http://www.w3.org/2003/05/soap-envelope"
   
} 

Extract xml.Envelope.Body

machaval avatar Jul 12 '18 19:07 machaval