This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 108115 - Code Completion does not work for native C extensions
Summary: Code Completion does not work for native C extensions
Status: NEW
Alias: None
Product: ruby
Classification: Unclassified
Component: Code Completion (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@ruby
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-06-26 10:07 UTC by Martin Krauskopf
Modified: 2011-01-28 20:10 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Martin Krauskopf 2007-06-26 10:07:54 UTC
Particularly in this case:

  require 'rubygems'
  require 'ruby-debug-base'

  Debugger.|

I would expect CC for e.g. 'start', 'stop' methods.
Comment 1 Jiri Kovalsky 2007-07-03 14:16:14 UTC
Reassigning this issue to newly created 'ruby' component.
Comment 2 Torbjorn Norbye 2007-08-10 01:22:25 UTC
Yeah, the indexer only knows about Ruby code. To handle the native C Ruby libraries, I used a variety of scripts to
generate "stubs" (Ruby code with method signatures that match the native method calls). This won't work for gems that
haven't been processed in advance.