This page is no longer maintained — Please continue to the home page at www.scala-lang.org

block of private declarations ...

2 replies
G J
Joined: 2011-12-16,
User offline. Last seen 42 years 45 weeks ago.

Is there some way to mark a whole block of declarations as being
private. For example:

private {
val x =
val y = ..
val z = ..

def f = ..
}

instead of:

private val x =
private val y =
private val z =

private def f =

Or any shorthand to avoid having to type and read all the private
declarations.

Tymon Tobolski 2
Joined: 2011-12-16,
User offline. Last seen 42 years 45 weeks ago.
Re: block of private declarations ...

Just an opinion - in bigger files this becomes unreadable (e.g. in ruby)

On Dec 16, 2011, at 2:28 PM, G J wrote:

> Is there some way to mark a whole block of declarations as being
> private. For example:
>
> private {
> val x =
> val y = ..
> val z = ..
>
> def f = ..
> }
>
> instead of:
>
> private val x =
> private val y =
> private val z =
>
> private def f =
>
> Or any shorthand to avoid having to type and read all the private
> declarations.

dcsobral
Joined: 2009-04-23,
User offline. Last seen 38 weeks 5 days ago.
Re: block of private declarations ...

Well, you could always put them inside a "private object". It's not
the same thing, but it might be close enough.

On Fri, Dec 16, 2011 at 11:28, G J wrote:
> Is there some way to mark a whole block of declarations as being
> private. For example:
>
> private {
>   val x =
>   val y = ..
>   val z = ..
>
>   def f = ..
> }
>
> instead of:
>
> private val x =
> private val y =
> private val z =
>
> private def f =
>
> Or any shorthand to avoid having to type and read all the private
> declarations.

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland