We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Add the following two refactorings:
viewButton active config_ = Button.button [ Button.onClick (config_.tagger (ToggleResponsiveMenu (if active then DefaultState else QuickFilters ) ) )
running Abstract while selecting lines 5-11 :
viewButton active config_ = Button.button [ Button.onClick (config_.tagger (myFunction active)) $0myFunction $1active = (ToggleResponsiveMenu (if active then DefaultState else QuickFilters ) )
with tabstops indicated by $0, $1.
Should work at the type level:
type Foo = Foo { val : Int, name : String } | Bar Int
Activating while selecting the record:
type Foo = Foo MyRecod | Bar Int type alias $0MyRecord = { val : Int, name : String }
type alias Strings = List String myFun : Strings -> String myFun = String.join ", "
Running on Strings produces:
Strings
myFun : List String -> String myFun = String.join ", "
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add the following two refactorings:
Abstract
running Abstract while selecting lines 5-11 :
with tabstops indicated by $0, $1.
Should work at the type level:
Activating while selecting the record:
Un-abstract is conceptually the reverse:
Running on
Strings
produces:The text was updated successfully, but these errors were encountered: