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 262795 - java.lang.AssertionError on "step-into"
Summary: java.lang.AssertionError on "step-into"
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Compiler (show other bugs)
Version: 8.2
Hardware: PC Windows 10 x64
: P3 normal (vote)
Assignee: Dusan Balek
URL:
Keywords:
: 262797 (view as bug list)
Depends on:
Blocks:
 
Reported: 2016-07-13 10:18 UTC by akobberup
Modified: 2016-07-19 09:21 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
ide log (112.87 KB, text/plain)
2016-07-13 10:18 UTC, akobberup
Details

Note You need to log in before you can comment on or make changes to this bug.
Description akobberup 2016-07-13 10:18:57 UTC
Created attachment 160364 [details]
ide log

Gets this exception when i tried to step into method "addComponent" (which is in a superclass) from an anonymous inner class.	



	public ProducerPanel(StepComponentProducer_i producer, int level) {
		super("producer: "+producer.getId(), level);
		addStyleName("producer");
		this.producer = producer;
		
		producer.addProducedStepChangeHandler(new StepComponentProducerChangeHandler_i() {
			@Override
			public void onCreatedStepComponents(StepComponentProducer_i a_cStepComponentProducer, List<StepComponent_i> a_cCreated) {
				for (StepComponent_i stepComponent : a_cCreated) {
					//this is the method i tried to step into
					addComponent(stepComponent);
				}
			}
		});
	}
Comment 1 Martin Entlicher 2016-07-13 11:42:35 UTC
AssertionError in javac.
Comment 2 Svata Dedic 2016-07-19 09:21:48 UTC
*** Bug 262797 has been marked as a duplicate of this bug. ***