API-CHANGES.txt 4.2 KB

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