2
0

API-CHANGES.txt 4.6 KB

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