Coder Social home page Coder Social logo

js-addin's People

Contributors

megaboich avatar

Watchers

 avatar

js-addin's Issues

beeping sound in the find popupwindow when pressing Enter and Esc

What steps will reproduce the problem?
1.Open the find window
2.open some kind of javascript file
3.insert a few keys that could be a prefix of some function in the javascript 
code.
4.use the keyboard up and down arrows keys to move between the proposed items 
in the drop down box that opens showing the available functions with the prefix 
that we entered.
5.press enter on one of them

What is the expected output?
The cursor should jump to the function first line of code without any sound

What do you see instead?
there is an annoying beeping sound that accompanies.
The same thing happens if you just press Esc to close the find dialog. again 
annoying beeping sound


What version of the product are you using? On what operating system?
version 3.5. Window 7 Enterprise 64 bit


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 1 May 2012 at 10:22

qunitjs instruction throws cause a false positive error

Please see this site: http://api.qunitjs.com/throws/

The throws instruction is interpreted as an error by jsparser in visual studio 
2010 :

test( "throws", function() {
function CustomError( message ) {
this.message = message;
}
CustomError.prototype.toString = function() {
return this.message;
};
throws(
function() {
throw "error"
},
"throws with just a message, no expected"
);
throws(
function() {
throw new CustomError();
},
CustomError,
"raised error is an instance of CustomError"
);
throws(
function() {
throw new CustomError("some error description");
},
/description/,
"raised error message contains 'description'"
);
});


Original issue reported on code.google.com by [email protected] on 20 Feb 2014 at 8:43

Parser doesn't skip script tags with server code

There are vs2008 and two script tags in an aspx file: the first one is a server 
vb.net code, and the second one is for javascript code. For example:

<script runat="server">
    'some vb.net code
</script>

<script type="text/javascript">
   //some js code
</script>

The tree window doesn't show any js code in this case. If I broke the first 
script tag (e.g. '<scr ipt'), the parser starts display code for the second one.

Original issue reported on code.google.com by [email protected] on 30 Sep 2010 at 3:05

Error option not visible VS2010

What steps will reproduce the problem?
1. Install 3.3 in VS2010
2.Open js-addin window
3.Open js file and remove ;
4.No syntax error shown

What version of the product are you using? On what operating system?
VS2010 on Windows 7 64-bit

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 15 Oct 2011 at 8:04

Peek Definition Breaks. Closing will lock environment.

What steps will reproduce the problem?
1. In VS 2013 Update 3, right-click => Peek Definition, or hit Alt-F12, on any 
method. 
2. Attempt to close the peek definition window.
3. Environment locks up. Turns white and freezes. 


What is the expected output? What do you see instead?
-> Window should close.
-> Environment locks up instead. 

What version of the product are you using? On what operating system?
-> JavaScript Parser Version : 3.7.3
-> Windows 7, Latest Version / Updated.

Please provide any additional information below.

-> I attempted repairing VS.NET and removing all other extensions to see if 
maybe this is caused by some other extension, and that did not work. This is 
sort of a strange problem as the two should not be related. 

Original issue reported on code.google.com by [email protected] on 19 Oct 2014 at 4:33

Error in Visual Studio log after installation

  <entry>
    <record>853</record>
    <time>2013/04/14 06:53:42.714</time>
    <type>Error</type>
    <source>Editor or Editor Extension</source>
    <description>System.NullReferenceException: Object reference not set to an instance of an object.&#x000D;&#x000A;   at JsParser.Package.UI.ErrorsNotificationControl..ctor(IWpfTextView textView)&#x000D;&#x000A;   at JsParser.Package.UI.JSParserErrorsNotificationMarginFactory.CreateMargin(IWpfTextViewHost textViewHost, IWpfTextViewMargin containerMargin)&#x000D;&#x000A;   at Microsoft.VisualStudio.Text.Utilities.ContainerMargin.&lt;AddMargins&gt;b__2(IWpfTextViewMarginProvider mp)&#x000D;&#x000A;   at Microsoft.VisualStudio.Text.Utilities.GuardedOperations.InstantiateExtension[TExtension,TMetadata,TExtensionInstance](Object errorSource, Lazy`2 provider, Func`2 getter)</description>
  </entry>

Original issue reported on code.google.com by [email protected] on 14 Apr 2013 at 6:58

Problem with parsing js-file

Problem with parsing js-file in Visual Studio 2011 DP

Windows 7 x86

On this place - 

App.util.anim = function (elem, prop, time, callback) {
    if (!elem.style.opacity) { elem.style.opacity = 1 };
    var offset = (prop.opacity - elem.style.opacity) / Math.floor(time / 25);
    var k = Math.floor(time / 25);
    var int = setInterval(function q() {
        if (elem) {
            elem.style.opacity = parseFloat(elem.style.opacity) + offset;
            k--;
            if (k == 0) {
                clearInterval(int);
                callback();
            }
        }
    }, 25)
}

Js file and picture with problem attached

Original issue reported on code.google.com by [email protected] on 8 Nov 2011 at 2:43

Attachments:

False error report on valid JS regular expression

What steps will reproduce the problem?
1. JavaScript Parser reports "Right paren expected" error on /[/]test[.]/ regex.

What is the expected output? What do you see instead?
Expected result: no errors reported.

What version of the product are you using? On what operating system?
Windows 7 Enterprise, VS2010 Professional x64, JavaScript Parser v. 3.6

Please provide any additional information below.
BTW, /\/test\./ is OK

Original issue reported on code.google.com by [email protected] on 9 May 2013 at 11:14

Use of unused reserved words causes the parser to stop parsing past that point

What steps will reproduce the problem?
1. Open a file with JS that uses a JS reserved word that isn't currently in use 
in the current JS specification. Here's some code that will reproduce the 
problem:

function ThisFunctionIsVisible(rootTitle, subTitle)
{
    this._rootTitle = rootTitle;
    this._subTitle = subTitle;
}

function BuggyFunction(whatever)
{
    whatever.static();
}

function ThisFunctionDoesntShowUp()
{
    return false;
}

What is the expected output? 
I expect to see the "ThisFunctionDoesntShowUp" function visible in the parser, 
or failing that, an error explaining the problem with the code.

What do you see instead?
It is not visible.

What version of the product are you using? On what operating system?
v3.2 on VS 2010 Ultimate
Windows Server 2008 R2
Other VS Extensions:
- JSEnhancements
- Productivity Power Tools
- Quick Open File for VS 2010

Please provide any additional information below.
I know that it probably isn't technically correct to support using reserved 
words this way, however when dealing with a large codebase where coding 
conventions are not strictly followed, reserved words can often sneak in. It is 
much more useful for JS Parser to be liberal in what it accepts, since many 
browsers do tha same.

Perhaps you could offer a strict mode that treats these as errors, exposing 
them to the user as well.

Original issue reported on code.google.com by [email protected] on 19 Sep 2011 at 10:14

Possibility to configure some keywords ignore list

Hi guys, 

I have the following lines of code 
...
 someFunction()
    .then(function(result) {...})
    .catch(function (er) { ... });
...
And got syntax error on line with "catch" function. As I understood 
parser considers this like reserved keyword and I can't to change something.
Is it possible to add some ignore list for such cases where I will put "catch" 
as ignored keyword. Or similar to resharper add some special comment before 
this line asking parser to ignore the next line.

Version 3.7.3. Windows 7. Visual Studio 2012.

Thanks in advance

Original issue reported on code.google.com by [email protected] on 12 Mar 2014 at 5:02

"\" in end of string

What steps will reproduce the problem?
1. var a = 'blablabla \
    blablabla';

2. Error: Hex literals no digits.

Это не правильно, "\" - означает продолжение 
строки на следующей линии.

Original issue reported on code.google.com by [email protected] on 23 Oct 2011 at 11:46

Can not load JS_addin in vs2008

What steps will reproduce the problem?
1.never automatic load.
2.I use the addin management to load it throw an exception.
3.The exception  told me the pramameters is incorrect.Also give the errorno
80070057

Original issue reported on code.google.com by [email protected] on 23 Mar 2010 at 3:18

Recieve new version notification although the plugin is v3.1

What steps will reproduce the problem?
1.Download JsParser_package_v3.1.vsix
2.Install in Vs2010 Ultimate and restart vs
3.A message "JSParser version checker" shows up

What is the expected output? What do you see instead?
Notify me in the next version, not the current

What version of the product are you using? On what operating system?
3.1

Please provide any additional information below.
I am on a x64 Windows 7 machine.

Original issue reported on code.google.com by [email protected] on 17 Jun 2011 at 6:51

Attachments:

debugger keyword is reported as error

What steps will reproduce the problem?
1. Create a jS file and put debugger; in
2. Plugin reports this line as error
3.

What is the expected output? What do you see instead?

No error should be reported, maybe warning ?


What version of the product are you using? On what operating system?

3.6


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 14 Apr 2013 at 3:34

Wrong tooltip on the first menu item

What steps will reproduce the problem?
1.Place your mouse on the first menu item of JS parser
2.Wait for the tooltip

What is the expected output? What do you see instead?
A meaningful e.g. Hierarchy Options

What version of the product are you using? On what operating system?
v.3.1

Please provide any additional information below.
Visual studio 2010 Ultimate on Windows 7 x64

Original issue reported on code.google.com by [email protected] on 17 Jun 2011 at 6:53

Attachments:

Stopped working - error

VS2010,Parser was working fine, then stopped showing list of functions.
error message shows :

Index was outside of the bounds of the array. JsParserCore

Original issue reported on code.google.com by [email protected] on 16 Jun 2010 at 1:46

debugger; on first line treated as error when configured not to

What steps will reproduce the problem?
1. in VS options, select "do not treat debugger keyword as error"
2. create a js file with debugger; on the first line.  JS parser reports syntax 
error on line 1
3. insert a blank line at the top of the file, such that debugger; is now on 
line two.  save file and see that JS parser no longer reports a syntax error 
(expected)

What is the expected output? What do you see instead?
When JS Parser is configured to not treat the debugger keyword as an error, I 
expect it not to do so even if it's on the first line of a file.

What version of the product are you using? On what operating system?
Windows 8.1 JS Parser 3.7.3


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 20 Nov 2013 at 10:56

Low keyboard support

I tune up to open JSParser dock by keyboard shortcut, i can press UP or 
DOWN and it works. When i press ENTER key - nothing happens.

Would be cool to select method name in document when ENTER key is pressed, 
like by mouse double-click.

I use JSParser v2.0
Windows Server 2003R2 SP2
VS 2010 RC1




Original issue reported on code.google.com by [email protected] on 31 May 2010 at 8:24

Doesn't support property getters and setters

What steps will reproduce the problem?
1.
Create a js class that includes property getters/setters:

var test = function () { };
test.prototype = {
    get value() {
        return _value;
    },
    set value(val) {
        _value = val;
    }
};

What is the expected output? What do you see instead?

This is valid js syntax and we should see no errors.  Instead, it erroneously 
reports multiple errors:

Colon Expected. Line 3
Syntax Error.  Line 5
Syntax Error.  Line 8
Syntax Error.  Line 9


What version of the product are you using? On what operating system?

Javascript Parser Version 3.6, Visual Studio 2012 Ultimate, Windows 7 Home 
Premium

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 14 May 2013 at 2:29

VS Crash on symbol find

What steps will reproduce the problem?
1. type in $ in a large javscript file that uses jquery
2.
3.

What is the expected output? What do you see instead?
request more characters if result is too large

What version of the product are you using? On what operating system?
3.5

Please provide any additional information below.
Should not automaticly try to search for symbol/function if the result is going 
to be too large

Original issue reported on code.google.com by [email protected] on 6 Apr 2012 at 6:02

Parser function list window opens for .cs files when they are not included in extension list while debugging

What steps will reproduce the problem?
1.Enable function list
2.set extension list to .js only, then start debugging.
3.open .cs (C#) file.

What is the expected output? What do you see instead?
I expect function list to disappear for all files that are not.js while 
debugging

What version of the product are you using? On what operating system?
Windows 7 Ultimate 64bit. Latest version of parser

Please provide any additional information below.

I have function list window docked on right side, to the left of solution 
explorer

Original issue reported on code.google.com by [email protected] on 27 Mar 2011 at 11:33

Attachments:

Conflict with Productivity Power Tools

What steps will reproduce the problem?
1. Install Productivity Power Tools add-in
2. Pin opened CS or VB file to "window" bar
3. Pin opened JS file to "window" bar
4. Swith to JS file
5. Turn on parser window
6. Switch to CS or VB file
7. ! Current file is detached from "window" bar to floating

What is the expected output? What do you see instead?
stay file on "window" bar

What version of the product are you using? On what operating system?
Windows 7 x86, VS2010 Professional SP1
Javascript parser 1.0
Productivity Power Tools 10.0.20427.10

Please provide any additional information below.


PS: Sorry for my bad English.

Original issue reported on code.google.com by [email protected] on 12 May 2011 at 4:27

Can not open the latest cordova js for windows 8 .

What steps will reproduce the problem?
1. get latest cordova code from git 
https://github.com/apache/cordova-windows.git 
2. open the cordova-2.5.0.js in the JavaScript Parser
3. the js parser view shows nothing.

What is the expected output? What do you see instead?
The js parser can parser the content of cordova.js

What version of the product are you using? On what operating system?
The latest version from VS extension store. Windows 8 Enterprise + Visual 
studio 2012 pro. 

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 27 Feb 2013 at 5:59

Attachments:

Error upgrading js-addin to VS2012 Premium (JsParser.Package.JsParserPackage...)

What steps will reproduce the problem?
1. Have previous version of js-addin (version just BEFORE 3.7.2 installed)
2. Run VS2012 Premium as Administrator and install update when prompted
3. Restart VS2012

What is the expected output? 
No errors come up and the js-addin works.

What do you see instead?
A popup error pops up and the js-addin doesn't work.  The popup error window 
that says (see below or attachment):

---------------------------
Microsoft Visual Studio
---------------------------
The 'JsParser.Package.JsParserPackage, JsParser.Package, 
Version=3.7.5056.30126, Culture=neutral, PublicKeyToken=fa7fdf07bc1e063d' 
package did not load correctly.

The problem may have been caused by a configuration change or by the 
installation of another extension. You can get more information by examining 
the file 
'C:\Users\UserName\AppData\Roaming\Microsoft\VisualStudio\11.0\ActivityLog.xml'.

Continue to show this error message?
---------------------------
Yes   No   
---------------------------

On what operating system? Windows 7 Enterprise N

Original issue reported on code.google.com by [email protected] on 4 Nov 2013 at 5:35

Attachments:

Syntax error reported on "debugger;"

What steps will reproduce the problem?
1. JavaScript Parser reports "Syntax error" on 'debugger;' line. 

What is the expected output? What do you see instead?
No errors reported.

What version of the product are you using? On what operating system?
Windows 7 Enterprise, VS2010 Professional x64, JavaScript Parser v. 3.6

Original issue reported on code.google.com by [email protected] on 9 May 2013 at 11:19

Catastrophic failure (Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED) EnvDTE

What steps will reproduce the problem?
New install

1. Closed all instances of Visual Studio
2. Installed js-addin by creating an 'AddIns' folder in
C:\Documents and Settings\%USER%\My Documents\Visual Studio 2008

Copied files in as follows:
\JSparser.AddIn
\JSParser\JSparser.dll
\JSParser\JsParserCore.dll
\JSParser\Microsoft.JScript.Compiler.dll

2. Open VS 2008
3. Open existing project
4. .js already present in loaded tabs
5. New add in displayed and functioning correctly (js function hierarchy 
display and navigation)
6. Start project (web site)
7. Clicking in IDE whilst project is running results in ERROR modal dialog:
Catastrophic failure (Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED) EnvDTE

Clicking OK produces further instances of the dialog. Eventually IDE allows 
interaction after 3/4 dialog's have been dismissed

What is the expected output? What do you see instead?
n/a

What version of the product are you using? On what operating system?
JSParser_v3.1
VS 2008 PRO
Windows XP SP3
AnkhSVN - Subversion Support for Visual Studio 2.1.10019.14 
 * Ankh.Package 2.1.10019.14
 * Subversion 1.6.15 via SharpSvn 1.6015.1625.10417


Please provide any additional information below.
n/a

Original issue reported on code.google.com by [email protected] on 25 Feb 2011 at 11:29

The JS Parser option is disabled in the menu

What steps will reproduce the problem?
1. Not sure, I just installed it on VS2008 as per the instrucitons (copied to 
C:\Documents and Settings\xxx\My Documents\Visual Studio 2008\Addins)
2.
3.

What is the expected output? What do you see instead?
The JS Parser option should be enabled since i have a JS file open.

What version of the product are you using? On what operating system?
3.5 (VS2008)

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 28 Jun 2012 at 10:53

Add syntax so that some code won't be parsed by JsParser

It would be most welcome to have a line syntax to put in the code so that parts 
of the of it would not be parsed by JSParser.

Ex : 

Some script tag in a XSLT file :
 <script>
     <![CDATA[   
     // ** jsparser:off
     var cgi  = '<xsl:value-of select="$CGI"/>';
     // ** jsparser:on

     ]]>
</script>


or some closure compiled code which sometime fails in jsParser:
 <script>
// ** jsparser:off
new function(h){var 
l=h.separator||"&",k=h.spaces===!1?!1:!0,m=h.prefix!==!1?h.h....
// ** jsparser:on
</script>




Thank you.

Original issue reported on code.google.com by [email protected] on 7 Jun 2013 at 7:24

An exception is thrown : Incorrect parameter. error 80070057

What steps will reproduce the problem?
An exception is thrown : Incorrect parameter. error 80070057


What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?
vs2008 win7 pro

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 18 Jun 2011 at 6:17

Attachments:

No sorting in the javascript Parser.

Excellent plugin. All though some shrink/expand of the functions like .CS
files would be so nice. 

But dude.. Sort the treeview js parser, if not: it's useless.

What steps will reproduce the problem?
1. use the plugin
2. Look at the tree view
3. Realise the list is not sorted
4. Realise that using the VS search window is faster to track a function

What is the expected output? What do you see instead?
I expected to see a sorted list to gain an overview of our huge JS files

What version of the product are you using? On what operating system?
vers. 1.1

Please provide any additional information below.
Just sort it. Or at least add an option to do so.

Original issue reported on code.google.com by [email protected] on 10 Feb 2010 at 9:24

function () { /sdf/.test('') } - Literal regex at beginning of function body throws error

What steps will reproduce the problem?
1. Add this to new js file: function y() { /sdf/.test('') || alert('nope') }
2. Save the file

What is the expected output? What do you see instead?
- no error should be thrown

What version of the product are you using? On what operating system?
- using 3.6 in VS 2010 on Windows Server 2008 R2 (aka Windows 7)

Original issue reported on code.google.com by [email protected] on 27 Jun 2013 at 11:14

Disallow razor file where I have write dynamic code in c#.

What steps will reproduce the problem?
1. I want a feature to disallow this plugin to show me error for certain razor 
file that I am currently working on.


I am working on razor file (.cshtml) and I want to stop it to tell me where I 
have used custom dynamic c# code. It's valid but invalid by this extension.

Can someone make this feature.

Thanks :)


Original issue reported on code.google.com by [email protected] on 7 Oct 2014 at 7:20

Panel not auto hide

What steps will reproduce the problem?
1.open a js file
2.visual studio -> view -> other windows -> javascript parser
3.switch any file(not js)
4.javascript parser panel not auto hide

What is the expected output? What do you see instead?
The previous version can automatically hide

What version of the product are you using? On what operating system?
Visual Studio 2010 , Win7 64bit

Please provide any additional information below.
none

Original issue reported on code.google.com by [email protected] on 16 Feb 2012 at 2:34

Error when opening Javascript Parser

What steps will reproduce the problem?
1. View Menu --> Other windows --> Javascript Parser.

What is the expected output? What do you see instead?

When i attempt to open Javascript Parser i get an error stating "Value of -7 is 
not valid for SplitterDistance..." [see attachments]


What version of the product are you using? On what operating system?

latest version of JSParser, win 8.1 VS2013 update 3

Please provide any additional information below.

as a work around i think you can "Window Menu --> reset window layout" 
close/open VS.

I'm only reporting this because it has happened to me in the past on VS2012.  
(maybe a GT 0 check before setting the splitterDistance?  :)

thanks so much, love the product


Original issue reported on code.google.com by [email protected] on 7 Oct 2014 at 1:26

Attachments:

Error in parsing

Hello.

Open attached file.

Addin not correct parsed this place 

App.util.anim = function (elem, prop, time, callback) {
    if (!elem.style.opacity) { elem.style.opacity = 1 };
    var offset = (prop.opacity - elem.style.opacity) / Math.floor(time / 25);
    var k = Math.floor(time / 25);
    var int = setInterval(function q() {
        if (elem) {
            elem.style.opacity = parseFloat(elem.style.opacity) + offset;
            k--;
            if (k == 0) {
                clearInterval(int);
                callback();
            }
        }
    }, 25)
}

and yet 2 error in picture

1)  wrong line
2) parsing abort after line 2160 (in file over 3500 line)

Original issue reported on code.google.com by [email protected] on 10 Nov 2011 at 2:53

  • Merged into: #21

Attachments:

Function list appears on .CS file after clicking on error or find results list then the .cs file.

What steps will reproduce the problem?
1.Set functionlist to appear only for .js files
2.Open a .cs file(C#)then do a global search for anything and click on a result
3.Now click on a .cs file in the main edit window. The functionlist appears

What is the expected output? What do you see instead?
There should only be a function list for .js files

What version of the product are you using? On what operating system?
Latest version. Windows 7 ultimate 64 bit

Please provide any additional information below.

The same thing happens if you have an erro list after a compile and you click 
on one of them.

Original issue reported on code.google.com by [email protected] on 28 Mar 2011 at 3:44

Error with VS2012 when opening project

What steps will reproduce the problem?
1. Open a Solution with a project and create a Typescript file in the project.
2. Close VS2012 with the Typescript file open.
3. Re-open VS2012 and then open the solution. 

I get an error that tells me to check the activity log.  This is the error from 
the activity log.
=================================================================
1195 ERROR System.NullReferenceException: Object reference not set to an 
instance of an object. at 
JsParser.Package.UI.ErrorsNotificationControl..ctor(IWpfTextView textView) at 
JsParser.Package.UI.JSParserErrorsNotificationMarginFactory.CreateMargin(IWpfTex
tViewHost textViewHost, IWpfTextViewMargin containerMargin) at 
Microsoft.VisualStudio.Text.Utilities.ContainerMargin.<AddMargins>b__2(IWpfTextV
iewMarginProvider mp) at 
Microsoft.VisualStudio.Text.Utilities.GuardedOperations.InstantiateExtension[TEx
tension,TMetadata,TExtensionInstance](Object errorSource, Lazy`2 provider, 
Func`2 getter)   Editor or Editor Extension 2013/04/18 18:00:53.922 
==================================================================

Also,
It would be nice if you would update the parser so that it does not treat a 
line with debugger; as an error.

Original issue reported on code.google.com by [email protected] on 18 Apr 2013 at 6:07

Feature Request

It would be cool if the parser could position itself on the correct item in
the list when we are inside the javascript file.

What i mean is:
If i double click a function in the list, my cursor gets positioned at the
right place in the file.
If i position myself somewhere in the file it would be nice that the list
also gets positioned at the right place.


btw, just discovered the markers feature. Very handy :)

Original issue reported on code.google.com by [email protected] on 17 May 2010 at 12:20

Incompatible with VS2010

What steps will reproduce the problem?
1. Install into VS 2010 RC

What version of the product are you using? On what operating system?
1.2 & VS2010 RC

Please provide any additional information below.
.addin has no entry for 2010
If i add an entry, it loads, but doesn't work: blank window.

Original issue reported on code.google.com by [email protected] on 19 Feb 2010 at 5:18

Errors reported in opened cshtml files when opening VS together with a solution

What steps will reproduce the problem?
1. Open a cshtml file in your solution
2. Quit Visual Studio, saving the solution and opened documents
3. Reopen Visual Studio

What is the expected output? What do you see instead?
I get the JS error bar with several syntax errors in that file wherever there 
is code that is commented out using @* *@. When I close this cshtml file and 
open it again while VS is already running and/or everything is initialized I 
don't get these errors.

What version of the product are you using? On what operating system?
JavaScript Parser 3.7.3 in VS2012 Update 3 on Windows 7 x64 SP 1.

Original issue reported on code.google.com by [email protected] on 13 Nov 2013 at 10:48

using AJAX Toolkit ScriptManager causes false positives

What steps will reproduce the problem?
1) create a form 
2) add AjaxToolkit ScriptManager controls & add composite scripts/scripts 
(included below)

<!-- Code -->
<ajaxToolkit:ToolkitScriptManager 
ID="ManagerScript" 
runat="server" 
EnablePageMethods="true" 
ScriptMode="Release" 
EnablePartialRendering="true">
            <CompositeScript>
                <Scripts>
                    <asp:ScriptReference Path="!/Scripts/Blah.js">

<!-- END Code -->

What is the expected output? What do you see instead?
Expecting : No Errors. 
Addin rendering "Syntax Errors"

What version of the product are you using? On what operating system?
3.6 on Windows 7 (32bit)


Please provide any additional information below.



Original issue reported on code.google.com by [email protected] on 22 May 2013 at 4:39

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.