| Summary: | can't add replies on user's discussion page on KDE UserBase | ||
|---|---|---|---|
| Product: | [Applications] konqueror | Reporter: | Alexander Potashev <aspotashev> |
| Component: | khtml | Assignee: | Konqueror Bugs <konqueror-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | SVN | ||
| Target Milestone: | --- | ||
| Platform: | Gentoo Packages | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Alexander Potashev
2011-01-07 12:47:09 UTC
KJS bug, actually:
<script>
var o = { "-1" : "OK"}
alert(o[-1]);
alert(o["-1"]);
</script>
May or may not be tricky.
SVN commit 1215528 by orlovich: Fix problems with negative indeces in bracket ops in cases we can statically determine arguments to be of int32 type. Fixes reply problem on userbase.kde.org. I think I'll probably just have to bite the bullet and add in a uint32 type to FrostByte's type system, but getting conversion rules right for that will be tricky... and it'll be extra-annoying that all the bitops like to produce int32. BUG:262398 BUG:204143 M +23 -4 codes.def WebSVN link: http://websvn.kde.org/?view=rev&revision=1215528 SVN commit 1215529 by orlovich: Merged revision:r1215528 | orlovich | 2011-01-18 18:46:40 -0500 (Tue, 18 Jan 2011) | 11 lines Fix problems with negative indeces in bracket ops in cases we can statically determine arguments to be of int32 type. Fixes reply problem on userbase.kde.org. I think I'll probably just have to bite the bullet and add in a uint32 type to FrostByte's type system, but getting conversion rules right for that will be tricky... and it'll be extra-annoying that all the bitops like to produce int32. BUG:262398 BUG:204143 M +23 -4 codes.def WebSVN link: http://websvn.kde.org/?view=rev&revision=1215529 |