Closed ragulmathawa closed 7 years ago
DUPE of #5053 #5051
Yes @RicardoVaranda I already seen those issues. But I think the reason causing these issus are different from each other. I can pin point where the error triggers it may help to solve the problem or get some reason for the problem. So i created a new issue. Here is my case,
The error causes because of this line
import { CustomLineSeriesComponent} from './custom-chart/line-series.component';
In line-series.component.ts i am importing a component file from ngx-charts module to extend it.
line no 6
import {LineSeriesComponent} from '@swimlane/ngx-charts/src/line-chart';
The import statement cause the error. when i remove this import statement it works good. So it must be something related to the file import or file creation.
I hope importing a component from an external module is a right one
Please take a look at the repo.
Dupe of https://github.com/angular/angular-cli/issues/5053. It seems like the same issue and it's better to consolidate them in a single place.
I temporary fixed the issue replacing the code line 14876 in "typescript.js"
from: var sourceFile = new SourceFileConstructor(263 / SourceFile /, /pos/ 0, / end / sourceText.length);
to: var sourceFile = new SourceFileConstructor(263 / SourceFile /, /pos/ 0, / end / sourceText ? sourceText.length : 20);
Hello @rafaelmelo007.
I have some problem. After replace the code in "typescript.js" returns this error:
ERROR in Cannot read property 'getSourceFile' of undefined
I have this exact same problem as well. Happens when including a module I am developing, like to @ragulmathawa.
I have removed all external dependencies and file references from the module just to try, but I still get the same error.
I have also double checked that the main
entry of package.json
is correct.
If I change the line of typescript.js
like @rafaelmelo007 suggested, then I get the same error as @arlindonatal above.
I'm really stumped as none of the error messages are really indicative of where the error might be.
Put a console.log(fileName) in your createSourceFile() function and it will show you exactly where is the problem. Mine was environment.ts that was missing.
I am having the same problem. When I added console.log(fileName) in createSourceFile(), it seems the problem file is:
node_modules/@angular/common/index.d.ts
Why is it trying to transpile Angular files? How can I disable node_modules from being included in a build? (Or avoid this bug some other way?)
For what it's worth, I got this error when referencing a d.ts file via: ///<reference path="./foo.d.ts" />
with an invalid path, which I discovered using @klferreira's suggestion.
After facing a similar unhelpful stack trace myself, i can tell you that for me the issue was a typo in an environments declaration in .angular-cli.json
:
"environments": {
"dev": "environments/environment.ts",
"prod": "environments/environment.prod.ts",
"e2e": "environments/environments.e2e.ts"
}
Here the file was actually named environment.e2e.ts, so the extra 's' was the root cause. Granted my stack trace wasn't entirely the same as the original in this issue, but maybe running an strace
on the build and filtering for any file-not-found responses will help you track down the root cause in this case.
As already suggested by @jdthorpe, I also had the very same issue due to ///<reference in my old code.
I had the case where environment.ts was missing, and therefore this error was trown.
It happended with me twice, when I ve renamed a component and the other case when delete one. This was just hiding another error: I forgot rename or delete others imports that was using these files. After rename and restart with ng serve, it works again.
In my case:
After changing the component name i thought that was the problem (wrong references somewhere else in my code). but that was not the case.
i forgot that i also changed the names of this "element" in the component:
selector: 'app-uitgaven-form'
On my corresponding HTML-page i did NOT change this. There it was:
<app-bon-form></app-bon-form>
after changing it to:
<app-uitgaven-form></app-uitgaven-form>
my problem was solved
In My Case I Tried To Get Data From Server And Display It's Lenght In html ...
Declar a Variable Wich The Data Saves In It By Array In Constructor like :
export class DashboardComponent { trainers: any;
constructor(){ this.trainers= []; } }
and in Html : {{ trainers.length }}
And Its Work :+1:
I have the same:
ListComponent.html:19 ERROR Error: Cannot read property 'length' of null
at viewWrappedDebugError (core.js:9795)
at callWithDebugContext (core.js:15101)
at Object.debugCheckAndUpdateView [as checkAndUpdateView] (core.js:14628)
at ViewRef_.detectChanges (core.js:11605)
at eval (core.js:5913)
at Array.forEach (
Another pages have same errors. It working properly if user is authorised. I loss the moment when it starting to happens.
i Hope i Can Help You But i Described My Personal Experiment,,, i Wish You Finally Find The Best Solution For Your Issue
Your Friend, Adham
2017-12-22 7:43 GMT+02:00 Roman Bebnev notifications@github.com:
I have the same: ListComponent.html:19 ERROR Error: Cannot read property 'length' of null at viewWrappedDebugError (core.js:9795) at callWithDebugContext (core.js:15101) at Object.debugCheckAndUpdateView [as checkAndUpdateView] (core.js:14628) at ViewRef_.detectChanges (core.js:11605) at eval (core.js:5913) at Array.forEach () at ApplicationRef.tick (core.js:5913) at eval (core.js:5746) at ZoneDelegate.invoke (zone.js:392) at Object.onInvoke (core.js:4756)
Another pages have same error also but without stack trace.
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/angular/angular-cli/issues/5132#issuecomment-353526589, or mute the thread https://github.com/notifications/unsubscribe-auth/AgCdbOT467F6KLyEV0DwwLnQUxyp1Eetks5tC0GYgaJpZM4MPhMX .
@AdhamRammadan thanks for response. I had been resolved my issue. Reason was: interceptor tried attach auth header with non-existing token (null). Hard to resolve because angular show view / html based error. Data not exists from wrong-authorised header request. In two words - it can be http / headers error.
In my case i discovered that my environments.dev.ts
file was missing, all of a sudden. Restored it from git and now this problem disappeared.
I spent some 2 hours but resolved with including environments directory to project after re-install from repo etc.
@klferreira could you please explain your way in more details thanks in advance
I solved this problem (error during refactoring test). All is good for angular v4.3. and v4.4
1) Change @angular/cli" version 1.7.3 to 1.4.10 in package.json (latest for angular4)
2) rm -rf node_modules
3) npm install --no-optional
This issue has been automatically locked due to inactivity. Please file a new issue if you are encountering a similar or related problem.
Read more about our automatic conversation locking policy.
This action has been performed automatically by a bot.
OS?
Versions.
Repro steps.
https://github.com/ragulmathawa/cutom-ngx-charts
This is the git repo with code I tried.
The log given by the failure.
Mention any other details that might be useful.
I have seen several issues with same error but for different cases. The error must detailed and the possible cause of undefined variable should be found.
Several issues were closed by downgrading the angular-cli but we need to know the exact reason to prevent future issues.