Error: Illegal frame index as variable value in WebStorm debugger - meteor

While debugging with WebStorm 2016.2.3 a tiny toy Meteor 1.4.1.1 app written in CoffeeScript 1.2.4_1, some variables that I watch at breakpoints have value: Error: Illegal frame index.
Surprisingly, googling "Error: Illegal frame index" did not return any definition or explanation of what "illegal frame index" means, only some big uncommented code files.
Has anyone encountered this and figured out what it means?

I had the same problem with WebStorm and Meteor, I don`t know why it happens but in my case I have solved it through next workaround:
In Debug Tool Window tab, in Frames pane, click another frame
Click again on the current frame, wait for the data to be collected
I hope this helps you.

Related

Failed to map data for input 91913 for index IdIndex?

I am using IDEA to learn the springMVC framework, but I think I have encountered a strange problem.
Let me introduce the process of what happened.
My computer is stuck, and then I start to compile my project, the result is as follows
Failed to map data for input 91913 for index IdIndex
At the same time, another thing happened, I can not create a class, as shown below

Mysterious ORA-06553: PLS-103

I have a very strange problem in handling of a PLSQL package.
We have the same package and body in two environments PRODUCTION and TEST. The one on PRODUCTION compiles with no issues but on TEST it throws this error
Error:
ORA-06553: PLS-103: Encountered the symbol "ALTERNATIV_NAME" when expecting one of the following:
<an identifier> <a double-quoted delimited-identifier>
ORA-06553: PLS-112: end-of-line in quoted identifier".
I have copied the same package structure with the body from PRODUCTION to TEST database, but still I get the same. The body throws the above mentioned error.
I am unable to understand what is 'ALTERNATIV_NAME', any help is much appreciated.
The error is a syntax error. There's something in the source code which is breaking compilation. The error message should include line numbers which will point you to the spot to look at.
Questions in the form 'my code runs in environment A but fails in environment B' are virtually impossible for us to answer. Even if you posted your code the chances are we still won't be able to help, because the most likely cause is some difference between the two environments, and obviously we don't have access to them.
The good news is, you do have access to your two environments and so you can figure out what is different between the two. For instance, one possible explanation is a non-printing character in the script which is ignored in one environment but hurls in the other because they're on different operating systems.
Incidentally, this suggests you have a problem in your deployment process. You shouldn't have anything in PRODUCTION which hasn't been run successfully in TEST.
I know it is late, but maybe help someone.
I had same issue, it appears that inside the PL/SQL code , i was referencing a column
inside a view,
when I browsed the view in sql developer editor, the column name spans two lines!!!...
putting it in one line fixed my problem.

Rational Functional Tester MapFormatException

couple of months ago I upgraded my instance of RFT to 8.5.0.1 I have recently started trying to create new Test scripts and noticed thet every time I tried to run a new script wheter recorded or calling parts of the framework library I am geting the following error:
com.rational.test.ft.object.map.PbjectMapFormatException
Could not read Object.Map [C:.......... path goes here .....] It may be missing or inthe wrong format
I am at a loss here. If you know of a solution I would appreciate it if you could enlighten me.
Are you using a shared object map ? It looks like the object map is missing. Try creating a new RFT project and script with default object map to see if it solves the issue.

Oracle Report layout issue?

I am a novice user of Oracle Report Builder, so forgive me if the answer should be obvious.
I am attempting to run a 9i report, and I keep getting an error that appears like there is an issue with frames overlapping. I have two versions and both are getting the same error. One version is the report I want. The other is a stripped down version with only a couple fields, to narrow down what might be causing it.
Terminated with error: <br>REP-271187990: Virtual Memory System error. REP-0200: Cannot allocate enough memory. cavaa 22 REP-0002: Unable to retrieve a string from the Report Builder message file. REP-271187990:
Occasionally, it kicks out the message below when I try to run it, with no other accompanying details. The select runs and returns the desired results, and the function returns the ref cursor results as expected. The package is valid and compiled, so the query itself should be fine. There is only one query in the report, and I have tried various things, including stripping the report to narrow down the source of the error, with no luck. Any ideas to try would be appreciated.
Terminated with error: <br>REP-1401: 'qr_1refcurds1': Fatal PL/SQL error occurred.
It turns out that the problem was with data returned from my refcursor.
In the package spec I had one of the fields wrong field in the table.field%type declaration.
For those experiencing a similar error I would suggest:
If you have your SQL in functions, as opposed to right in the report, check your package spec to ensure your field order matches usage in the body.
If you have any overlapping frames in your report, this message can also come up. Check the object navigator for any hidden frames. They can be totally invisible, and the only way to know for sure is by checking in the navigator. Hint - Give meaningful names to your fields and text labels, so you can see what's contained in each frame. Also check the source of container frames is... but that's another REP error to enjoy.
Depending on setup, the first time you load a report it may error out referring to one of your queries. That happens after compile. Just try again, and every time going forward it's fine.
Consider the server patches mentioned above if your SQL statements are dynamic.
Feel free to add to this list if you know of others.
According to Oracle Support Note 430044.1 -
MS Windows: Reports 10g with Ref Cursors Fails with REP-200 and REP-65
Virtual Memory System Error [ID 430044.1]
This is a known Oracle Reports bug for MS Windows Platform.
Bug 5584001 DYNAMIC REF CURSORS DON'T WORK IN VERSION 10.1.2.0.2
REPORTS BUILDER
There are step by step instructions in the Oracle Note to apply the patch to resolve this issue. Also note, this problem is specific to MS Windows.
The suggested Oracle One-off patches are-
One-off patch 4505133
One-off patch 5634746
Log-on to Oracle Support, download the two patches and follow the step by step instructions mentioned in Note 430044.1 to apply the patch.

TypeError: Error #1009 - (Null reference error) With Flash

I am not an expert in flash, but I do work with AS and tweak Flash projects, though not having deep expertise in it. Currently I need to revamp a flash website done by one another guy, and the code base given to me, upon execution is throwing the following error:
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at NewSite_fla::MainTimeline/__setProp_ContactOutP1_ContactOut_Contents_0()
at NewSite_fla::MainTimeline/frame1()
The structure of the project is like, it has the different sections split into different movie clips. There is no single main timeline, but click actions on different areas of seperate movie clips will take them between one another. All the AS logic of event handling are written inline in FLA , no seperate Document class exists.
Preloader Movie clip is the first one getting loaded. As i understood the error is getting thrown initially itself, and it is not happening due to any Action script logic written inline, because it is throwing error even before hitting the first inline AS code.
I am not able to figure out what exactly is causing the problem, or where to resolve it. I setup the stuff online, for reference if anybody want to take a look at it, and here is the link. You need to have flash debugger turned ON in your browser, if need to see the exception getting triggered.
I really got stuck at this point. Any help will be great. I had not seen the particular solution I am looking for anywhere yet, though Error #1009 is common.
Did you set the option "Export at frame 1" for the classes in your library?
I get this error for instance:
I have a circle which is a Circle class and put it on Frame 10.
If I try to attach a eventHandler to it from frame 1, I get this error.
Set the option "Export at frame 1" for my Circle class will solve this issue for me.

Resources