Bug 309077 - application crash when editing Haskell file
Summary: application crash when editing Haskell file
Status: RESOLVED WORKSFORME
Alias: None
Product: kate
Classification: Applications
Component: kwrite (show other bugs)
Version: unspecified
Platform: Microsoft Windows Microsoft Windows
: NOR critical
Target Milestone: ---
Assignee: KWrite Developers
URL:
Keywords: triaged
Depends on:
Blocks:
 
Reported: 2012-10-27 09:06 UTC by M. Boehm
Modified: 2018-10-27 02:49 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description M. Boehm 2012-10-27 09:06:01 UTC
This bug seems to be specific to the Windows version of KDE (i'm using 4.8.0). When editing a Haskell file, kwrite crashes. This crash is always reproducible (see below). This bug does *not* occur on Ubuntu, KDE 4.8.5.

Reproducible: Always

Steps to Reproduce:
1. Create new file
2. Save file as "test.hs"
3. type "a"
4. hit return --> crash!
Comment 1 Erlend Hamberg 2012-10-27 09:41:05 UTC
That's... interesting. This is difficult to investigate without a backtrace. Do you get a backtrace you can share with us?

It sounds like it could be related to the haskell indenter. If you have a little time to investigate you could try modifying haskell.js (not sure where it gets put on Windows) and see if you can pinpoint what causes the crash. (If the indenter is responsible at all.)
Comment 2 M. Boehm 2012-10-27 10:37:11 UTC
> It sounds like it could be related to the haskell indenter. 

You're right. I switched off the indenter and the error doesn't occur any more. All other indenters work as well. Unfortunately, the indenter is reset to Haskell every time I save the file :-(

I'll investigate this further...
Comment 3 M. Boehm 2012-10-27 11:35:34 UTC
OK, I think I found the reason: Regular expressions don't work!

I added the following at the beginning of the indent function: 

debug("abcdeabc".replace(/a/g, "x"));
debug("abcdeabc".search(/a/));
debug("abcdeabc".search(/x/));

and on the console I get (when the indent function is called):

abcdeabc
-1
-1

instead of
 
xbcdexbc
0
-1

what would be expected. I added the same lines to the script on Ubuntu, and the console output is as expected. 

So the cause seems to be somewhere in the JavaScript engine... What engine is used by KDE on Windows?
Comment 4 M. Boehm 2012-10-27 11:49:14 UTC
The actual crash occurs when executing the following code:

currentLine.stripWhiteSpace().startsWith("|")

startsWith uses regular expressions and also uses the escape function, which relies on regular expressions as well and doesn't work either.
Comment 5 M. Boehm 2012-11-25 10:25:09 UTC
I tried editing Haskell files on a windows 7, 32 bit system, and the bug didn't occur. On windows 8, 64 bit, the bug *does* occur. Maybe it has something to do with the OS? Or that the system is 64 bit? Does anybody have an idea why regular expressions in javascript work on the first system, but not on the other?
Comment 6 Andrew Crouthamel 2018-09-23 02:37:05 UTC
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least 15 days. Please provide the requested information as soon as possible and set the bug status as REPORTED. Due to regular bug tracker maintenance, if the bug is still in NEEDSINFO status with no change in 30 days, the bug will be closed as RESOLVED > WORKSFORME due to lack of needed information.

For more information about our bug triaging procedures please read the wiki located here: https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please set the bug status as REPORTED so that the KDE team knows that the bug is ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!
Comment 7 Andrew Crouthamel 2018-10-27 02:49:53 UTC
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least 30 days. The bug is now closed as RESOLVED > WORKSFORME due to lack of needed information.

For more information about our bug triaging procedures please read the wiki located here: https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!