Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] work around v8 memory leak #12652

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/ember-application/lib/system/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -1441,20 +1441,24 @@ function resolverFor(namespace) {
}

resolve.describe = function(fullName) {
"Bacon ipsum dolor amet flank biltong landjaeger swine pork chop bresaola turducken ball tip jowl t-bone. Cupim pig bacon, pancetta short loin swine corned beef kevin frankfurter porchetta fatback. Tail drumstick ham hock filet mignon boudin pork. T-bone capicola swine strip steak leberkas chuck, andouille boudin chicken landjaeger brisket kevin cupim salami. Sirloin shank pork loin kielbasa leberkas, shankle pork ham hock brisket beef. Ham biltong corned beef, ball tip ribeye tenderloin jowl tail tri-tip porchetta pastrami spare ribs. Sausage beef ribs biltong, bacon meatball drumstick pancetta flank pig beef ground round"
return resolver.lookupDescription(fullName);
};

resolve.makeToString = function(factory, fullName) {
"Bacon ipsum dolor amet flank biltong landjaeger swine pork chop bresaola turducken ball tip jowl t-bone. Cupim pig bacon, pancetta short loin swine corned beef kevin frankfurter porchetta fatback. Tail drumstick ham hock filet mignon boudin pork. T-bone capicola swine strip steak leberkas chuck, andouille boudin chicken landjaeger brisket kevin cupim salami. Sirloin shank pork loin kielbasa leberkas, shankle pork ham hock brisket beef. Ham biltong corned beef, ball tip ribeye tenderloin jowl tail tri-tip porchetta pastrami spare ribs. Sausage beef ribs biltong, bacon meatball drumstick pancetta flank pig beef ground round"
return resolver.makeToString(factory, fullName);
};

resolve.normalize = function(fullName) {
"Bacon ipsum dolor amet flank biltong landjaeger swine pork chop bresaola turducken ball tip jowl t-bone. Cupim pig bacon, pancetta short loin swine corned beef kevin frankfurter porchetta fatback. Tail drumstick ham hock filet mignon boudin pork. T-bone capicola swine strip steak leberkas chuck, andouille boudin chicken landjaeger brisket kevin cupim salami. Sirloin shank pork loin kielbasa leberkas, shankle pork ham hock brisket beef. Ham biltong corned beef, ball tip ribeye tenderloin jowl tail tri-tip porchetta pastrami spare ribs. Sausage beef ribs biltong, bacon meatball drumstick pancetta flank pig beef ground round"
if (resolver.normalize) {
return resolver.normalize(fullName);
}
};

resolve.knownForType = function knownForType(type) {
"Bacon ipsum dolor amet flank biltong landjaeger swine pork chop bresaola turducken ball tip jowl t-bone. Cupim pig bacon, pancetta short loin swine corned beef kevin frankfurter porchetta fatback. Tail drumstick ham hock filet mignon boudin pork. T-bone capicola swine strip steak leberkas chuck, andouille boudin chicken landjaeger brisket kevin cupim salami. Sirloin shank pork loin kielbasa leberkas, shankle pork ham hock brisket beef. Ham biltong corned beef, ball tip ribeye tenderloin jowl tail tri-tip porchetta pastrami spare ribs. Sausage beef ribs biltong, bacon meatball drumstick pancetta flank pig beef ground round"
if (resolver.knownForType) {
return resolver.knownForType(type);
}
Expand Down