We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffe9cc9 commit 4124190Copy full SHA for 4124190
go/gocompiler.vim
@@ -769,7 +769,7 @@ function s:GoCompiler.compile_isci(node)
769
endfunction
770
771
function s:GoCompiler.compile_iscs(node)
772
- throw 'NotImplemented: is#'
+ return self.compile_op2(a:node, '==')
773
774
775
function s:GoCompiler.compile_isnot(node)
@@ -781,7 +781,7 @@ function s:GoCompiler.compile_isnotci(node)
781
782
783
function s:GoCompiler.compile_isnotcs(node)
784
- throw 'NotImplemented: isnot#'
+ return self.compile_op2(a:node, '!=')
785
786
787
function s:GoCompiler.compile_add(node)
0 commit comments