summaryrefslogtreecommitdiff
path: root/src/scalap
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-12-03 07:17:33 +0000
committerPaul Phillips <paulp@improving.org>2010-12-03 07:17:33 +0000
commit2e136c6924007f65286451f2984d286f289dc0a4 (patch)
treebc46082179bf0d261e8d8e44ea0895220995ce00 /src/scalap
parentcc1f6bca81c9f524952b4b42b45d8e36d8df6387 (diff)
downloadscala-2e136c6924007f65286451f2984d286f289dc0a4.tar.gz
scala-2e136c6924007f65286451f2984d286f289dc0a4.tar.bz2
scala-2e136c6924007f65286451f2984d286f289dc0a4.zip
Eliminated SYNTHETICMETH flag.
meaningful name inside the pattern matcher. Created a tracker for TRANS_FLAG which could enforce the transience it promises us, but didn't turn it on. No review.
Diffstat (limited to 'src/scalap')
-rw-r--r--src/scalap/scala/tools/scalap/scalax/rules/scalasig/Flags.scala1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/scalap/scala/tools/scalap/scalax/rules/scalasig/Flags.scala b/src/scalap/scala/tools/scalap/scalax/rules/scalasig/Flags.scala
index 8027f0c4c1..218639e4a2 100644
--- a/src/scalap/scala/tools/scalap/scalax/rules/scalasig/Flags.scala
+++ b/src/scalap/scala/tools/scalap/scalax/rules/scalasig/Flags.scala
@@ -51,7 +51,6 @@ trait Flags {
def isParamAccessor = hasFlag(0x20000000)
def isModuleVar = hasFlag(0x40000000) // for variables: is the variable caching a module value
- def isSyntheticMethod = hasFlag(0x40000000) // for methods: synthetic method, but without SYNTHETIC flag
def isMonomorphic = hasFlag(0x40000000) // for type symbols: does not have type parameters
def isLazy = hasFlag(0x80000000L) // symbol is a lazy val. can't have MUTABLE unless transformed by typer