Bug 165095 - Path to the file is not shown in expression window - we only see c:\\\
Summary: Path to the file is not shown in expression window - we only see c:\\\
Status: CLOSED FIXED
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: PDT (show other bugs)
Version: unspecified   Edit
Hardware: All All
: P2 enhancement (vote)
Target Milestone: ---   Edit
Assignee: moshe CLA
QA Contact:
URL:
Whiteboard:
Keywords: plan
: 169063 (view as bug list)
Depends on:
Blocks:
 
Reported: 2006-11-19 08:13 EST by Gadi Goldbarg CLA
Modified: 2020-05-14 11:08 EDT (History)
0 users

See Also:


Attachments
example (85.37 KB, text/plain)
2006-11-19 08:14 EST, Gadi Goldbarg CLA
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Gadi Goldbarg CLA 2006-11-19 08:13:18 EST
see on the attached screen image that when added watch 'C:\Program 
Files\Zend...' but i see only C:\\\\
Comment 1 Gadi Goldbarg CLA 2006-11-19 08:14:03 EST
Created attachment 54131 [details]
example
Comment 2 moshe CLA 2007-02-12 03:32:10 EST
Replace the method in ExpressionsValueDeserializer(line 82):

private ExpressionValue buildSringType(VariableReader reader) {
	String value = reader.readString();
	String valueAsString = "(string:" + value.length() + ") " + value.replaceAll("\\\\", "\\\\\\\\");
	return new ExpressionValue(ExpressionValue.STRING_TYPE, value, valueAsString, null);
}
Comment 3 Shalom Gibly CLA 2007-02-13 06:13:33 EST
Fixed (applied the patch).
Thanks Moshe!!
Comment 4 Gadi Goldbarg CLA 2007-02-18 03:03:16 EST
fixed
Comment 5 Shalom Gibly CLA 2007-02-18 10:07:27 EST
*** Bug 169063 has been marked as a duplicate of this bug. ***