Fix space option not being applied to function bodies (#195)#198
Open
djunehor wants to merge 2 commits intoyahoo:mainfrom
Open
Fix space option not being applied to function bodies (#195)#198djunehor wants to merge 2 commits intoyahoo:mainfrom
djunehor wants to merge 2 commits intoyahoo:mainfrom
Conversation
Collaborator
|
I’m a bit concerned that the code has grown quite a lot. I wonder if there might be a cleaner implementation—does that seem difficult? |
… solution addressing complexity concerns (yahoo#195)
Author
You raised valid points. I've taken a second look at it and realised it can be simpler. There are a few edge cases that the shorter implementation doesn't cover. I've noted example failing test cases for those edge cases I could think of: // Test 1: Named function with complex expressions
var objWithNamedFunction = {
process: function processData(data) {
const result = data.map(x=>x*2);
if(result.length>0) {
return result.filter(x=>x>10);
}
return [];
}
};
// Test 2: Arrow function with nested blocks
var objWithArrowFunction = {
transform: (x) => {
const doubled = x*2;
if(doubled>10) {
return doubled;
}
return 0;
}
};
// Test 3: Multiple functions with mixed edge cases
var objWithMultipleFunctions = {
fn1: function(){return 1;},
fn2: ()=>{return 2;}, // Arrow function spacing
fn3: function named(){return 3;}
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR addresses Issue #195 where the
spaceoption was not being applied to function body formatting. The implementation enhances theserializeFuncfunction to accept and utilize formatting options, ensuring function bodies are properly indented and formatted when thespaceoption is provided. Added comprehensive test coverage for anonymous functions, named functions, arrow functions, multiple functions in the same object, and edge cases. All existing functionality remains intact with 100% test coverage maintained (80/80 tests passing).I confirm that this contribution is made under the terms of the license found in the root directory of this repository's source tree and that I have the authority necessary to make this contribution on behalf of its copyright owner.