• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3  */
4 
5 package org.w3c.performance
6 
7 public abstract class Performance {
nownull8     public abstract fun now(): Double
9 }
10