->
#@ts-ignore
subsystem.clearCache?()
Actual
// Generated by CoffeeScript 2.6.1
(function() {
return typeof subsystem.clearCache === "function" ? subsystem.clearCache() : void 0;
});
Expected
// Generated by CoffeeScript 2.6.1
(function() {
//@ts-ignore
return typeof subsystem.clearCache === "function" ? subsystem.clearCache() : void 0;
});