stephanedr

Results 10 comments of stephanedr

I get the same error. ``` Unable to open '\c:\\svn.log (read-only)': Unable to resolve filesystem provider with relative file path 'svn:\c:\\svn.log?{"action":"LOG","fsPath":"c:\\","extra":{}}'. ``` `` corresponds to the directory of the working...

I would also like that TS supports conditional compilation, but more in the C++/C# way too. My main use is for assertions. With your proposal @kitsonk, I would be able...

> @mhegazy said "Pre-processor directives (i.e.#ifdefs) are not desirable." I took him at his word. I just wanted to report my need for conditional compilation, which doesn't seem supported by...

@RichiCoder1, correct me if I'm wrong, but using decorators will only allow to empty the assert function. What I would like is to remove all the assert calls. @kitsonk, providing...

@SomaticIT A few remarks: 1/ For people who know C/C# syntax, the "=" sign between the name and the value may be a bit disturbing. Why not keeping the C/C#...

@SomaticIT 3a/ When DEBUG=0, the call is replaced by the given text, substituting the arguments. Fine. But when it's a non-constant expression, you call functions. Which is not the same...

Sorry I've used the C# decorator syntax. Let's use the TypeScript's one. ``` @macro function assert(cond: boolean): void { ... } ```

Is webpack able to remove function calls, e.g. assert() (for sure without surrounding each call with an if)? Support of "macros" would also solve requests like #8655.

@GabrielDelepine What about support of "macros"? The typical example is assert() and cast(), where as TS code like this: ``` function f(a: number) { assert(a >= 0 && a

@vahidahmad, indeed, as mentioned in my request: > When the password is stored in the config file, the extension reconnects automatically. But when the password is not stored, the extension...