Skip to content

Commit d1a6e9a

Browse files
author
Vlad Ureche
committed
Merge pull request #21 from VladUreche/topic/travis
Travis CI
2 parents 28e9bb7 + 3acd1be commit d1a6e9a

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.travis.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
language: scala
2+
script:
3+
- sbt ++$TRAVIS_SCALA_VERSION clean update compile test
4+
scala:
5+
- 2.11.0-M7
6+
jdk:
7+
- oraclejdk7
8+
notifications:
9+
email:
10+
11+
branches:
12+
only:
13+
- master

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
dotty
22
=====
33

4+
[![Build Status](https://travis-ci.org/lampepfl/dotty.png?branch=master)](https://travis-ci.org/lampepfl/dotty)
5+
46
Dotty is a platform to try out new language concepts and compiler technologies for Scala. The focus is mainly on simplification. We remove extraneous syntax (e.g. no XML literals), and try to boil down Scala's types into a smaller set of more fundamental constructors. The theory behind these constructors is researched in [DOT](http://www.cs.uwm.edu/~boyland/fool2012/papers/fool2012_submission_3.pdf), a calculus for dependent object types.
57

68
The dotty compiler is largely a new design. It takes a more functional approach than current scalac, paired with aggressive caching to achieve good performance. At present, only the frontend (parser and type-checker) exists; the transformation and code generation phases remain to be written.

0 commit comments

Comments
 (0)