|
Scala example source code file (Gil.scala)
The Gil.scala Scala example source codepackage scala.reflect package runtime private[reflect] trait Gil { self: SymbolTable => // fixme... please... // there are the following avenues of optimization we discussed with Roland: // 1) replace PackageScope locks with ConcurrentHashMap, because PackageScope materializers seem to be idempotent // 2) unlock unpickling completers by verifying that they are idempotent or moving non-idempotent parts // 3) remove the necessity in global state for isSubType private lazy val gil = new java.util.concurrent.locks.ReentrantLock @inline final def gilSynchronized[T](body: => T): T = { if (isCompilerUniverse) body else { try { gil.lock() body } finally { gil.unlock() } } } } Other Scala source code examplesHere is a short list of links related to this Scala Gil.scala source code file: |
... this post is sponsored by my books ... | |
![]() #1 New Release! |
![]() FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.