



Hello, I'm trying out Komodo IDE and I noticed that typecasted variables in php code don't show up in the code browser.
I quickly glanced over the program's preferences and help but couldn't find anything to address this issue.
Could this be fixed in one of the next releases?
Assuming that I'm not missing something, that is.
I'm not completely sure I understand the problem. Are you saying that the variables do not show up at *all*? In this case, can you provide a small code snippet we can use to reproduce the problem?
--
JeffG
Yes, that's the problem I'm encountering.

Here's what I'm seeing (try this link if the image doesn't show below):
For copy-paste pleasure:
<?php $a = (int) 1; $b = (integer) 2; $c = (bool) TRUE; $d = (boolean) FALSE; $e = (float) 0.1; $f = (double) 0.1; $g = (real) 0.1; $h = (string) 'string :)'; $i = (array) array('key1' => 'value1'); $j = (object) 'scalar'; $k = (binary) 'scalar'; $l = 1; $m = TRUE; $n = 0.1; $o = 'string'; $p = array('key1' => 'value1'); function testFunction () { $q = (int) 1; $r = 2; } ?>I've yet to tune some settings for an optimal experience, still everything else seems to be fine: the php interpreter runs smoothly, errors are signaled and autocompletion works with no issues.
If you can't reproduce the issue let me know, I'll try harder to find out if I'm doing something wrong with the configuration settings.
Thanks for your time!
Thanks, I've logged this bug:
http://bugs.activestate.com/show_bug.cgi?id=76553
We should be able to take a look at this prior to the 4.4 release at the latest.
--
JeffG