API-CHANGES.txt 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. 0.12.3 (wip):
  2. * Package Import-Export renamed to Kernel-ImportExport
  3. * A dozen of methods moved from Object to ProtoObject
  4. + Package >>
  5. + load
  6. + loadFromNamespace:
  7. + Package class >>
  8. + load:
  9. + load:fromNamespace:
  10. + PackageTransport >> load
  11. + PackageHandler >> load:
  12. + AmdPackageHandler >> load:
  13. - HTMLCanvas class >>
  14. - browserVersion
  15. - isMSIE
  16. - isMozilla
  17. - isOpera
  18. - isWebkit
  19. 0.12.2:
  20. * Collection >> contains: is deprecated in favor of anySatisfy:
  21. + Announcer >> on:doOnce:
  22. + String >>
  23. + uriEncoded
  24. + uriDecoded
  25. + uriComponentEncoded
  26. + uriComponentDecoded
  27. + Collection >>
  28. + removeAll
  29. + ifEmpty:ifNotEmpty:
  30. + ifNotEmpty:ifEmpty:
  31. + anyOne
  32. + noneSatisfy:
  33. + anySatisfy:
  34. + allSatisfy:
  35. 0.12.0:
  36. * SmalltalkMethodContext.prototype.fillBlock() takes a third 'index' parameter
  37. * Existing classes moved to new KernelInfrastructure package
  38. * ImporterExporter
  39. * are now StreamExporters
  40. * aware of AMD namespaces
  41. * support transport types and commit channels
  42. + Node >>
  43. + nextChild
  44. + method
  45. + postCopy
  46. + isCascadeNode
  47. + isLastChild
  48. + BlockNode >>
  49. + nextNode:
  50. + nextChild
  51. + SendNode >>
  52. + isCascadeSendNode
  53. + shouldBeAliased
  54. + CompiledMethod >> sendTo:arguments:
  55. + Array >>
  56. + addFirst:
  57. + removeLast
  58. + Number >>
  59. + ceiling
  60. + floor
  61. + asNumber
  62. + //
  63. + cos
  64. + sin
  65. + tan
  66. + arcCos
  67. + arcSin
  68. + arcTan
  69. + log
  70. + log:
  71. + raisedTo:
  72. + sign
  73. + **
  74. + ln
  75. + e
  76. + String class >> esc
  77. + String >>
  78. + asMutator
  79. + capitalized
  80. + isCapitalized
  81. + JSProxy >> printString
  82. + Behavior >>
  83. + ownProtocols
  84. + ownMethods
  85. + JSStream >> nextPutSendIndexFor:
  86. + InterfacingObject class
  87. + Interpreter class
  88. + DocumentFragmentTag class
  89. + AbstractExporter class
  90. + PlatformInterface class
  91. - Node >> extent
  92. - JSStream >> nextPutStatement:with:
  93. - Smalltalk.installSuperclass()
  94. - ClassReferenceNode class (now handled via VariableNode)
  95. 0.11.0:
  96. * AnnouncementSubscription use #valuable: instead of #block: (deprecated)
  97. * AbstractCodeGenerator inherits from Object, not NodeVisitor
  98. * Object>>printString
  99. * replace >>printString with >>printOn:
  100. * replace >>storeString with >>printString
  101. * PackageLoader is now PackageHandler (>>commit: >>setupPackagenamed:prefix: >>ajaxPutAt:data:
  102. * Package>>fetch: is now Package>>load:
  103. * Package>>fetch:prefix: is now Package>>load:prefix:
  104. * Queue>>front replaced by Queue>>next
  105. * Queue>>frontIfAbsent: replaced by Queue>>nextIfAbsent:
  106. * Queue>>back: replaced by Queue>>nextPut:
  107. * smalltalk.addMethod() does not use explicit JS selector
  108. * JSObjectProxy>>canForwardMessage: replaced by use of JSObjectProxy>>lookupProperty: with asJavaScriptSelector
  109. * JSObjectProxy>>forwardMessage: replaced by explicit JSObjectProxy>>forwardMessage:withArguments:
  110. * String>>asJavaScriptSelector moved to Kernel-Objects package
  111. + Object>>asString
  112. + Object>>putOn:
  113. + String>>isVowel
  114. + Collection>>putOn:
  115. + CharacterArray>>putOn:
  116. + Stream>><<
  117. + Stream>>write
  118. + SequenceableCollection>>newStream
  119. + SequenceableCollection>>readStream
  120. + SequenceableCollection>>stream
  121. + SequenceableCollection>>streamClass
  122. + SequenceableCollection>>writeStream
  123. + Collection>>isImmutable
  124. + Stream>>nextPutString:
  125. + StringStream>>nextPutString:
  126. + JSStream>>nextPutClassRefFunction:
  127. + String>>crlfSanitized
  128. + inlined Block now also responds to >>value:
  129. + Parser: split literal into runtimeLiteral and parseTimeLiteral
  130. + Parser: write #(4 #(5 6 #()) 7) as #(4 (5 6 ()) 7)
  131. + Parser: write #(#on:do: #Object) as #(on:do: Object)
  132. + Parser: Symbols for binarie selectores
  133. + Package>>commit
  134. + AIContext>>initializeLocals
  135. + ASTInterpreter>>withBlockContext:
  136. + smalltalk.allSelectors()
  137. + Object>>isCompiledMethod
  138. + Object>>isPackage
  139. + Object>>isBehavior
  140. + ClassMoved Announcemen class
  141. + Behavior>>includesBehavior:
  142. + Environment>>classes
  143. + Environment>>allSelectors
  144. + Environment>>removeProtocol:
  145. + Environment>>renameProtocol:to:in:
  146. + CompiledMethod>>protocol:
  147. + Smalltalk>>globalJsVariables
  148. + Smalltalk>>addGlobalJsVariable:
  149. + Smalltalk>>deleteGlobalJsVariable:
  150. - Object>>storeOn:
  151. - Object>>log:block:
  152. - Object>>printNl
  153. - Compiler-IR.st >>javascriptSelector
  154. - Compiler-IR.st >>nextPutVar:
  155. - Kernel-Collections.st >>asSuperSelector
  156. - Collection>>readStream
  157. - Collection>>stream
  158. - Collection>>streamClass
  159. - Collection>>writeStream
  160. - Symbol class (replaced with String)
  161. - IRInlinedNonLocalReturn class
  162. - IRInlinedSend>>nonLocalReturnInliner
  163. - IRNonLocalReturnInliner class
  164. - Package>>dependencies
  165. - Package>>dependencies:
  166. - Package>>properties
  167. - Package>>jsProperties
  168. - Package>>jsProperties:
  169. - Package>>propertiesAsJSON
  170. - Package>>propertyAt:
  171. - Package>>propertyAt:ifAbsent:
  172. - Package>>propertyAt:put:
  173. - Browser>>ajaxPutAt:data: