dlangBugzillaToGithub

Results 280 comments of dlangBugzillaToGithub

#### r.sagitario commented on 2018-05-07T06:12:51Z I remember I tried allowing calls within the expression evaluator (and fixed the parsing) but actually executing it didn't work so easily. So no support...

#### r.sagitario commented on 2018-05-24T07:11:57Z The concord plugin in the latest build on https://ci.appveyor.com/project/rainers/visuald allows calling simple free functions, i.e. no arguments. They might have to be given fully qualified,...

#### turkeyman commented on 2018-05-25T04:02:57Z It can call them... even if they mutate global state?

#### r.sagitario commented on 2018-05-25T05:22:17Z Yes, you can also do this in C++. It's necessary to click the "Try Again" icon, though, to not reevaluate it in the watch window...

#### turkeyman commented on 2018-05-25T05:37:31Z This is going to be so amazing if it works!

#### r.sagitario commented on 2018-06-02T12:46:38Z You can now call function and delegates without arguments in the watch window, i.e. this includes member functions. You'll still have to add "()" even...

#### turkeyman commented on 2018-06-06T05:11:58Z Okay, that's awesome! Seems to work well. So for const pure properties (or methods that look like properties) where it's safe to call them without...

#### r.sagitario commented on 2018-06-06T06:30:09Z I'm currently still trying to figure out how to deal with slices and delegates, because they are returned in a way incompatible with any C++...

#### r.sagitario commented on 2019-08-04T15:37:22Z Arbitrary return types now supported in https://github.com/dlang/visuald/releases/tag/v0.50.1-beta1

#### nick (@ntrel) commented on 2023-05-12T18:10:30Z ````markdown template X() {} It was decided that typeof(X) is void, that's in the spec. I'm not sure if the type of a template...