=htc add missing private markers to internal parser sub-traits
This commit is contained in:
parent
e53867b1d8
commit
533583a68d
2 changed files with 2 additions and 2 deletions
|
|
@ -23,7 +23,7 @@ import akka.parboiled2.util.Base64
|
||||||
/**
|
/**
|
||||||
* Rules for parsing Base-64 encoded strings.
|
* Rules for parsing Base-64 encoded strings.
|
||||||
*/
|
*/
|
||||||
trait Base64Parsing { this: Parser ⇒
|
private[parser] trait Base64Parsing { this: Parser ⇒
|
||||||
import Base64Parsing._
|
import Base64Parsing._
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ import akka.parboiled2._
|
||||||
*
|
*
|
||||||
* Mixing this trait into your parser gives you a simple facility to support this.
|
* Mixing this trait into your parser gives you a simple facility to support this.
|
||||||
*/
|
*/
|
||||||
trait StringBuilding { this: Parser ⇒
|
private[parser] trait StringBuilding { this: Parser ⇒
|
||||||
protected val sb = new java.lang.StringBuilder
|
protected val sb = new java.lang.StringBuilder
|
||||||
|
|
||||||
def clearSB(): Rule0 = rule { run(sb.setLength(0)) }
|
def clearSB(): Rule0 = rule { run(sb.setLength(0)) }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue