Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 327395 - [language support] Editor doesn't understand E4X namespaces
Summary: [language support] Editor doesn't understand E4X namespaces
Status: NEW
Alias: None
Product: JSDT
Classification: WebTools
Component: General (show other bugs)
Version: unspecified   Edit
Hardware: PC Linux
: P3 enhancement (vote)
Target Milestone: Future   Edit
Assignee: Project Inbox CLA
QA Contact: Chris Jaun CLA
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-10-09 17:53 EDT by Matěj Cepl CLA
Modified: 2013-06-19 11:09 EDT (History)
1 user (show)

See Also:


Attachments
screenshot of the wrong highlighting (96.10 KB, image/png)
2010-10-09 17:55 EDT, Matěj Cepl CLA
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Matěj Cepl CLA 2010-10-09 17:53:35 EDT
When editing this piece of code:

    post.createtime = new Date(entry.atomNS::updated);
    log.info("post.createtime: " + post.createtime);
    post.id = entry.atomNS::id;
    post.title = entry.atomNS::title;
    post.content = entry.content;
    post.save();
    log.info("post object:" + post.toSource());
    
 Eclipse doesn't recognize namespace:: construct and marks it as an error.
Comment 1 Matěj Cepl CLA 2010-10-09 17:55:35 EDT
Created attachment 180553 [details]
screenshot of the wrong highlighting