Is it possible to make Google Closure compiler *not* inline certain functions?
问题 Closure compiler is inlining a function, but the code size is smaller if that function is not inlined (I only care about code size - this is for JS1k). Can I tell the compiler that I don't want that function inlined? Edit: Just to explain a bit better, here's my function: function lineTo(x,y) { a.lineTo(x,y); } where a in the canvas context. Because there are so many a.lineTo s in the code, having this function used is worth it. Like this, my code is 1019 bytes (and all the lineTo s are