-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Update code examples to show both Scala 2 and Scala 3 syntax #2481
Labels
Comments
This was referenced Aug 16, 2022
This was referenced Aug 16, 2022
I tried to update "Named Arguments". I'm waiting for feedback before trying update on other page. As my update is now merged via #2521 (thanks bishabosha), I propose to update a next page: "Toor / Class Composition with Mixins" |
I leave a note here to say that https://docs.scala-lang.org/contribute/add-guides.html#scala-2-vs-scala-3 should be updated to explain the following points
|
This was referenced Sep 15, 2022
This was referenced Sep 22, 2022
This was referenced Sep 23, 2022
This was referenced Dec 7, 2022
This was referenced Mar 8, 2023
54 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We would like to have a single website documenting both Scala 2 and Scala 3 since, in most of the cases, their syntax is very similar, and their features are almost all the same. However, there can still be some syntactic differences between idiomatic Scala 2 code and idiomatic Scala 3 code. Therefore, we want to display both styles in our code examples by using tabs:
For code examples that are idiomatic in both Scala 2 and Scala 3, we show a single tab labelled “Scala 2 and 3”:
Unfortunately, there are lots of code examples in the documentation, and updating all of them is a huge (and repetitive) task for one person. But if a few dozen members of the community were each updating a couple of pages, the job would be done very quickly. So, everyone is welcome to help!
The policy for updating code examples is the following: show the most idiomatic style for all the code examples, for Scala 2 and Scala 3. For Scala 3 code examples, this means using the new control syntax, the indentation-significant syntax,
using
andgiven
,@main
,.*
wildcard import,?
wildcard type argument, tuple indexed access, etc.You can find the instructions to write tabbed code examples in the documentation.
Here is the list of pages that need to be updated. If you are interested in contributing, please add a comment to announce that you start working on a page, and I will mark it “in progress” to prevent overlapping contributions:
_tour/
directory)BasicsCompare Scala 2 vs Scala 3 with tabs in Tour of Scala / Basics #2458Unified TypesTranslate tour/unified-types to Scala 3 #2492ClassesEnable tabbed Scala 2/3 code in tour/classes. #2474Default Parameter ValuesTranslate tour/default-parameter-values to Scala 3 #2493Named ArgumentsAdd tabs tour named args #2521TraitsTabs for Scala 2/3 in some pages #2455TuplesEnable tabbed Scala 2/3 code in tour/tuples. #2476Class Composition with MixinsAdd code tabs for _tour/mixin-class-composition #2524Higher-order FunctionsAdd code tabs for _tour/higher-order-functions #2525Nested MethodsAdd code tabs for _tour/nested-functions #2528Multiple Parameter Lists (Currying)Add code tabs for _tour/multiple-parameter-lists.md #2530Case ClassesAdd code tabs for _tour/case-classes #2533Pattern MatchingAdd code tabs for _tour/pattern-matching and scala3-book/control-structures #2461Singleton ObjectsUpdate singleton-objects.md to use scala 2/3 tabs #2497Regular Expression PatternsAdd code tabs for _tour/regular-expression-patterns #2534Extractor ObjectsAdd code tabs for _tour/extractor-objects #2535For ComprehensionsFor-comprehensions article updated with tabs #2494Generic ClassesAdd code tabs for _tour/ generic-classes #2537VariancesAdd code tabs for _tour/variances #2547Upper Type BoundsAdd code tabs for _tour/upper-type-bounds #2548Lower Type BoundsAdd code tabs for _tour/lower-type-bounds #2549Inner ClassesAdd code tabs for _tour/inner-classes #2550Abstract Type MembersAdd code tabs for _tour/abstract-types #2551Compound TypesAdd code tabs for _tour/compound-types #2552Self-typeAdd code tabs for _tour/self-types #2553Implicit ParametersTabbed code snippets for the implicit params tour page. #2496Implicit Conversionsupdate tour/implicit-conversions for Scala 3 #2630Polymorphic MethodsAdd code tabs for _tour/polymorphic-methods #2554Type InferenceAdd code tabs for _tour/type-inference #2557OperatorsAdd code tabs for _tour/operators #2561By-name ParametersAdd code tabs for _tour/by-name-parameters #2564AnnotationsAdd code tabs for _tour/annotations #2566Packages and ImportsAdd code tabs for _tour/packages-and-imports #2570Package ObjectsTalk about top-level-definitions in the tour of Scala #2579_overviews/
directory)IntroductionAdd code tabs for collections-2.13/introduction, overview and trait-iterable #2571Mutable and Immutable CollectionsAdd code tabs for collections-2.13/introduction, overview and trait-iterable #2571Trait IterableAdd code tabs for collections-2.13/introduction, overview and trait-iterable #2571The sequence traits Seq, IndexedSeq, and LinearSeqAdd code tabs for collections-2.13/introduction, overview and trait-iterable #2571SetsAdd code tabs for collections-2.13/sets, immutabes and muttabes #2572MapsTabs for Scala 2/3 in some pages #2455Concrete Immutable Collection ClassesAdd code tabs for collections-2.13/sets, immutabes and muttabes #2572Concrete Mutable Collection ClassesAdd code tabs for collections-2.13/sets, immutabes and muttabes #2572ArraysAdd code tabs for collections-2.13/arrays, strings, equality and views #2574StringsAdd code tabs for collections-2.13/arrays, strings, equality and views #2574Performance Characteristics(no code examples)EqualityAdd code tabs for collections-2.13/arrays, strings, equality and views #2574ViewsAdd code tabs for collections-2.13/arrays, strings, equality and views #2574IteratorsAdd code tabs for collections-2.13/iterators, creating..., conversions... and options #2575Creating Collections From ScratchAdd code tabs for collections-2.13/iterators, creating..., conversions... and options #2575Conversions Between Java and Scala CollectionsAdd code tabs for collections-2.13/iterators, creating..., conversions... and options #2575The Architecture of Scala CollectionsAdd code tabs for overviews/architecture_collections-2.13 #2576 (review)Implementing Custom CollectionsAdd code tabs for overviews/custom-collections #2585Adding Custom Collection OperationsCustom operations #2589Migration TutorialAdd code tabs to the Scala 3 migration tutorial #2597Scala 3 Syntax RewritingAdd code tabs to the Scala 3 syntax rewriting #2643Syntactic ChangesAdd code tabs to Syntactic Changes #2722Dropped FeaturesAdd code tabs to the Scala 3 Dropped Features #2723Contextual AbstractionsAdd code tabs to contextual abstractions page #2724Other Changed FeaturesAdd code tabs to Other changes page #2725Type CheckerAdd code tabs to type checker page #2726Scala 3 Macros(marked as scala 3 only)Value Classes and Universal Traitsmark value classes as scala 2 only #2863An Overview of TASTyAdd more guidelines for labelling code examples for Scala 2/3 #2768String InterpolationTabs for Scala 2/3 in some pages #2455Implicit ClassesAdd code tabs to Contextual Abstractions #2787Library Author Guideport library authors guide to Scala 3 #2873Futures and PromisesPort futures article to use Scala 3 tabs #2467Optimizer(marked as scala 2 only)_overviews/scala3-book
directory)Scala 3 FeaturesAdd Scala 2 tabs in scala-3-book/scala-features #2495Why Scala 3?Why scala 3 tabs code #2510Hello, World!Add Scala version picker to Scala Book Hello World Page, remember preference #2450The REPLAdd code tabs for scala3-book/taste-repl #2487Variables and Data Typesadd scala 2&3 tables arround code in num 7 #2568Control Structuresadd code tabs in num8 #2580Domain Modelingadd code tabs in num9 #2581Methodsadd code tabs in num10. #2582First-Class Functionsadd code tabs in num11. #2583Singleton Objectsadd code tabs in num12. #2584Collectionsadd code tabs in num13. #2586Contextual Abstractionsadd code tabs in num14. #2587Top-level Definitionsadd code tabs in num15. #2588A First Look at TypesA first look at types tabs code #2511Control StructuresAdd code tabs for _tour/pattern-matching and scala3-book/control-structures #2461Domain Modeling(no code)Toolsadd code tabs in num20. #2590OOP Modelingadd code tabs in num21. #2591FP Modelingadd code tabs in num22. #2592Methods(no code)Method Featuresadd code tabs in num24. #2594main Methodsadd code tabs. #2609Anonymous FunctionsAdd Scala 2 code tabs in scala3/book/fun-anonymous-functions #2602Function VariablesAdd code tabs in fun-function-variables.md #2623Eta Expansionadd code tabs to num30 #2644Higher-Order Functionsadd code tabs to scala3 book fun-hofs #2598Write Your Own map MethodAdd code tabs in scala3/book/fun-write-map-function #2625Creating a Method That Returns a FunctionAdd code tabs to fun-write-method-returns-function #2664Packaging and Importsadd code tab in packaging-imports.md #2745Scala CollectionsAdd snippet tabs for collections in scala3book #2614Collections TypesAdd snippet tabs for collections in scala3book #2614Collections MethodsAdd snippet tabs for collections in scala3book #2614Functional ProgrammingAdd snippet tabs for functional programming in scala3book #2617What is Functional Programming(no code)Immutable ValuesAdd snippet tabs for functional programming in scala3book #2617Pure FunctionsAdd snippet tabs for functional programming in scala3book #2617Functions Are ValuesAdd snippet tabs for functional programming in scala3book #2617Functional Error HandlingAdd snippet tabs for functional programming in scala3book #2617Types and the Type SystemAdd code tabs for _overviews/scala3-book/types-{introduction,generics}.md #2599Inferred TypesAdd code tabs for _overviews/scala3-book/types-{introduction,generics}.md #2599GenericsAdd code tabs for _overviews/scala3-book/types-{introduction,generics}.md #2599Intersection TypesAdd code tabs for _overviews/scala3-book/types-intersection.md #2653Union TypesAdd more guidelines for labelling code examples for Scala 2/3 #2768Algebraic Data TypesAdd more guidelines for labelling code examples for Scala 2/3 #2768Varianceadd code tab in types-variance.md #2756Opaque Typesmark value classes as scala 2 only #2863Structural Typesmark structural types as Scala 3 only #2864Dependent Function Typesmark dependent function types as Scala 3 only #2865Other Typesmark dependent function types as Scala 3 only #2865Contextual AbstractionsGiven Instances and Using Clausesadd code tabs in _overviews/scala3-book/num59 #2640Type ClassesAdd code tabs to Contextual Abstractions #2787Context BoundsUpdated pages to be “Scala 3 Only” #2689Given ImportsUpdated pages to be “Scala 3 Only” #2689Extension MethodsAdd code tabs to Contextual Abstractions #2787Multiversal EqualityUpdated pages to be “Scala 3 Only” #2689Implicit ConversionsAdd code tabs to Contextual Abstractions #2787Interacting with Javaport java interaction to scala 2 #2867_overviews/tutorials
directory or_getting-started/
)Getting started with Scala and sbt on the command linefeature: Add Scala 3 section for getting started with sbt #2475Getting started with Scala in IntelliJAdd Scala 2 / Scala 3 syntax to the Getting Started with Intellij tutorial #2454Scala for Java ProgrammersAdd scala 3 code demos for Scala for Java Programmers #2499Note: in some cases, not only the code examples need to be updated, but also the text in the documentation (e.g.
@main
methods, extension methods, contextual abstractions, enums). In that case, the task is more complicated. Feel free to ask for help on the#scala-contributors
channel of the Scala discord server, or consider switching to a simpler page.The text was updated successfully, but these errors were encountered: