This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package models | |
import javax.inject.{Inject, Singleton} | |
import play.api.db.slick.{HasDatabaseConfigProvider, DatabaseConfigProvider} | |
import slick.driver.JdbcProfile | |
import scala.concurrent.ExecutionContext.Implicits.global | |
case class Group(id: Long = 0, name: String) | |
@Singleton() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package models | |
import java.sql.Timestamp | |
import javax.inject.{Inject, Singleton} | |
import play.api.db.slick.{HasDatabaseConfigProvider, DatabaseConfigProvider} | |
import slick.driver.JdbcProfile | |
case class Topic(id: Long = 0, groupId: Long, userId: Long, date: Timestamp, text: String) extends AbstractGroupMessage |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.yt-agile-table__row__cell { | |
border-color: #232e34; | |
border-right: 1px solid #232e34; | |
border-left: 1px solid #232e34; | |
} | |
.yt-agile-table .yt-agile-table__row { | |
border-bottom: 1px solid #232e34; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.jetbrains.fluid.java; | |
import org.objectweb.asm.Label; | |
import org.objectweb.asm.MethodVisitor; | |
import org.objectweb.asm.Opcodes; | |
import org.objectweb.asm.commons.AdviceAdapter; | |
public class ReplaceMonitorWithTryCatchVisitor extends AdviceAdapter implements Opcodes { | |
private Label endTry; | |
private Label startCatch; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
tokens = [ | |
crlf='regexp:\n' | |
escaped_crlf='regexp:^\\(\n)' | |
comment='regexp:[#|!][^\n]*' | |
nonId='regexp:[:=\s\\]' | |
sepearator='regexp:\s*(=|:)\s*' | |
id='regexp:[^#|!:=\s\n\\]([^:=\s\n\\]|(\\\s))*' | |
] | |
} |
OlderNewer